[llvm-commits] [llvm] r83529 - /llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
Mikhail Glushenkov
foldr at codedgers.com
Wed Oct 7 23:03:38 PDT 2009
Author: foldr
Date: Thu Oct 8 01:03:38 2009
New Revision: 83529
URL: http://llvm.org/viewvc/llvm-project?rev=83529&view=rev
Log:
Unbreak the build.
Forgot about the need to reconfigure after modifying Base.td.in....
Modified:
llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
Modified: llvm/trunk/tools/llvmc/plugins/Base/Base.td.in
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/llvmc/plugins/Base/Base.td.in?rev=83529&r1=83528&r2=83529&view=diff
==============================================================================
--- llvm/trunk/tools/llvmc/plugins/Base/Base.td.in (original)
+++ llvm/trunk/tools/llvmc/plugins/Base/Base.td.in Thu Oct 8 01:03:38 2009
@@ -85,9 +85,9 @@
(and (switch_on "emit-llvm"), (switch_on "c")), (stop_compilation),
(switch_on "fsyntax-only"), (stop_compilation),
(not_empty "include"), (forward "include"),
- (not_empty "I"), (forward "I")),
- (not_empty "D"), (forward "D")),
- (not_empty "MF"), (forward "MF")),
+ (not_empty "I"), (forward "I"),
+ (not_empty "D"), (forward "D"),
+ (not_empty "MF"), (forward "MF"),
(not_empty "MT"), (forward "MT"))),
(sink)
]>;
More information about the llvm-commits
mailing list