[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Integer/Makefile
Reid Spencer
reid at x10sys.com
Tue Jan 16 12:21:48 PST 2007
Changes in directory llvm-test/SingleSource/UnitTests/Integer:
Makefile updated: 1.1 -> 1.2
---
Log message:
Add the USE_REFERENCE_OUTPUT to bypass the native gcc output.
---
Diffs of the changes: (+7 -0)
Makefile | 7 +++++++
1 files changed, 7 insertions(+)
Index: llvm-test/SingleSource/UnitTests/Integer/Makefile
diff -u llvm-test/SingleSource/UnitTests/Integer/Makefile:1.1 llvm-test/SingleSource/UnitTests/Integer/Makefile:1.2
--- llvm-test/SingleSource/UnitTests/Integer/Makefile:1.1 Tue Jan 16 14:03:03 2007
+++ llvm-test/SingleSource/UnitTests/Integer/Makefile Tue Jan 16 14:21:32 2007
@@ -19,5 +19,12 @@
DISABLE_LLC := 1
DISABLE_JIT := 1
+# Define USE_REFERENCE_OUTPUT which is a signal to Makefile.programs
+# that the native compiler should not be run but that its output
+# should be "faked" by copying the reference output. This is
+# necessary because gcc doesn't support the bitwidth attribute and
+# therefore can't generate correct output.
+USE_REFERENCE_OUTPUT := 1
+
include $(LEVEL)/Makefile.config
include $(LEVEL)/SingleSource/Makefile.singlesrc
More information about the llvm-commits
mailing list