aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-12-21 00:29:59 +0100
committerLuc Van Oostenryck <luc.vanoostenryck@gmail.com>2018-12-21 00:33:05 +0100
commit112845e7cc227664f3a11f35d2885791b7d49a2a (patch)
tree4491805169654e9596f1d983fc28d268384400bd
parent320200821d637a054a0e8b87902a8e9b2c51991f (diff)
downloadsparse-112845e7cc227664f3a11f35d2885791b7d49a2a.tar.gz
remove -finline-functions from CFLAGS
By default, sparse is compiled with -finline-functions but this flag as no effect on the generated code (since gcc's defaults at -O2 already do automatic inlining). So, remove this flag. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e3e9bc64..2a3e4434 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ OS = linux
CC = gcc
-CFLAGS = -O2 -finline-functions -g
+CFLAGS = -O2 -g
CFLAGS += -Wall -Wwrite-strings
LD = gcc
AR = ar