[test-suite] r231943 - add -Wno-implicit-function-declaration to MultiSource/Benchmarks/MallocBench/gs CFLAGS

Matthias Braun matze at braunis.de
Wed Mar 11 10:28:45 PDT 2015


Author: matze
Date: Wed Mar 11 12:28:45 2015
New Revision: 231943

URL: http://llvm.org/viewvc/llvm-project?rev=231943&view=rev
Log:
add -Wno-implicit-function-declaration to MultiSource/Benchmarks/MallocBench/gs CFLAGS

implicit-function-declarations are errors by default on the iOS SDK.

Modified:
    test-suite/trunk/MultiSource/Benchmarks/MallocBench/gs/Makefile

Modified: test-suite/trunk/MultiSource/Benchmarks/MallocBench/gs/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/MallocBench/gs/Makefile?rev=231943&r1=231942&r2=231943&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/MallocBench/gs/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/MallocBench/gs/Makefile Wed Mar 11 12:28:45 2015
@@ -5,6 +5,8 @@ LDFLAGS += -lm
 CPPFLAGS += -DNOMEMOPT \
             -DGS_LIB_DEFAULT=\"$(PROJ_SRC_DIR):$(PROJ_SRC_DIR)/fonts\"
 
+CFLAGS += -Wno-implicit-function-declaration
+
 #
 # This is to work around a bug where having a function prototype that is
 # static and a function defintion that is not static get generated into 2





More information about the llvm-commits mailing list