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@xxxxxxxxx> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e3e9bc64f..2a3e44347 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 -- 2.20.0