[llvm-commits] [test-suite] r97289 - in /test-suite/trunk/MultiSource: Applications/Burg/Makefile Benchmarks/MallocBench/espresso/Makefile Benchmarks/Prolangs-C/cdecl/Makefile
Daniel Dunbar
daniel at zuster.org
Fri Feb 26 16:07:48 PST 2010
Author: ddunbar
Date: Fri Feb 26 18:07:48 2010
New Revision: 97289
URL: http://llvm.org/viewvc/llvm-project?rev=97289&view=rev
Log:
Force -std=gnu89 for a few tests that use restrict as an identifier.
Modified:
test-suite/trunk/MultiSource/Applications/Burg/Makefile
test-suite/trunk/MultiSource/Benchmarks/MallocBench/espresso/Makefile
test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/cdecl/Makefile
Modified: test-suite/trunk/MultiSource/Applications/Burg/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Applications/Burg/Makefile?rev=97289&r1=97288&r2=97289&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Applications/Burg/Makefile (original)
+++ test-suite/trunk/MultiSource/Applications/Burg/Makefile Fri Feb 26 18:07:48 2010
@@ -2,6 +2,7 @@
PROG = burg
CPPFLAGS = -DDEBUG
+CFLAGS += -std=gnu89
LDFLAGS = -lstdc++
ExtraSource := y.tab.c
Modified: test-suite/trunk/MultiSource/Benchmarks/MallocBench/espresso/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/MallocBench/espresso/Makefile?rev=97289&r1=97288&r2=97289&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/MallocBench/espresso/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/MallocBench/espresso/Makefile Fri Feb 26 18:07:48 2010
@@ -1,5 +1,6 @@
LEVEL = ../../../..
PROG = espresso
CPPFLAGS += -DNOMEMOPT
+CFLAGS += -std=gnu89
RUN_OPTIONS = -t $(PROJ_SRC_DIR)/INPUT/largest.espresso
include ../../../Makefile.multisrc
Modified: test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/cdecl/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/cdecl/Makefile?rev=97289&r1=97288&r2=97289&view=diff
==============================================================================
--- test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/cdecl/Makefile (original)
+++ test-suite/trunk/MultiSource/Benchmarks/Prolangs-C/cdecl/Makefile Fri Feb 26 18:07:48 2010
@@ -1,5 +1,7 @@
LEVEL = ../../../..
+CFLAGS += -std=gnu89
+
PROG = cdecl
STDIN_FILENAME = $(SourceDir)/testset
include $(LEVEL)/MultiSource/Makefile.multisrc
More information about the llvm-commits
mailing list