[llvm-commits] CVS: llvm-test/SingleSource/UnitTests/Integer/Makefile
Reid Spencer
reid at x10sys.com
Mon Feb 5 18:54:26 PST 2007
Changes in directory llvm-test/SingleSource/UnitTests/Integer:
Makefile updated: 1.5 -> 1.6
---
Log message:
Allow the test suite to optional select large integer tests (>64 bits)
---
Diffs of the changes: (+6 -0)
Makefile | 6 ++++++
1 files changed, 6 insertions(+)
Index: llvm-test/SingleSource/UnitTests/Integer/Makefile
diff -u llvm-test/SingleSource/UnitTests/Integer/Makefile:1.5 llvm-test/SingleSource/UnitTests/Integer/Makefile:1.6
--- llvm-test/SingleSource/UnitTests/Integer/Makefile:1.5 Thu Jan 18 20:22:46 2007
+++ llvm-test/SingleSource/UnitTests/Integer/Makefile Mon Feb 5 20:54:07 2007
@@ -10,6 +10,9 @@
# the same results regardless of whether you make clean or not.
RUN_OPTIONS := 31415926
+# Define this to 1 to test larger integer (>64 bits) types.
+ENABLE_LARGE_INTEGERS := 0
+
# None of these test cases can use a native code generator because
# those targets are not set up to deal with arbitrary precision
# integer types. Consequently, we must disable the LLI, LLC,
@@ -31,3 +34,6 @@
include $(LEVEL)/SingleSource/Makefile.singlesrc
LDFLAGS += -lstdc++
+ifeq (1,$(ENABLE_LARGE_INTEGERS))
+CPPFLAGS += -DENABLE_LARGE_INTEGERS
+endif
More information about the llvm-commits
mailing list