[llvm-commits] [test-suite] r77390 - /test-suite/trunk/Makefile.programs
David Goodwin
david_goodwin at apple.com
Tue Jul 28 16:09:29 PDT 2009
Author: david_goodwin
Date: Tue Jul 28 18:09:29 2009
New Revision: 77390
URL: http://llvm.org/viewvc/llvm-project?rev=77390&view=rev
Log:
Add makefile variable DISABLE_BLOCK_EXTRACTION that can be used to disable bugpoint block extraction.
Modified:
test-suite/trunk/Makefile.programs
Modified: test-suite/trunk/Makefile.programs
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/Makefile.programs?rev=77390&r1=77389&r2=77390&view=diff
==============================================================================
--- test-suite/trunk/Makefile.programs (original)
+++ test-suite/trunk/Makefile.programs Tue Jul 28 18:09:29 2009
@@ -527,6 +527,10 @@
BUGPOINT_OPTIONS += -disable-loop-extraction
endif
+ifdef DISABLE_BLOCK_EXTRACT
+BUGPOINT_OPTIONS += -disable-block-extraction
+endif
+
# Give bugpoint information about LDFLAGS to pass down to the actual link stage
# of the program.
BUGPOINT_OPTIONS += $(LDFLAGS:%=-Xlinker=%) $(EXTRA_OPTIONS:%=-Xlinker=%)
More information about the llvm-commits
mailing list