summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-10-08 06:03:38 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-10-08 06:03:38 +0000
commit976248d83610eec6ae8b166e9e9f991b9016f544 (patch)
treeff7a595a1969c876a83f07aec586ba539161c5a0 /tools
parent67a6103a345830f6135e1fb5f6a15d4abfdba21a (diff)
downloadllvm-976248d83610eec6ae8b166e9e9f991b9016f544.tar.gz
llvm-976248d83610eec6ae8b166e9e9f991b9016f544.tar.bz2
llvm-976248d83610eec6ae8b166e9e9f991b9016f544.tar.xz
Unbreak the build.
Forgot about the need to reconfigure after modifying Base.td.in.... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83529 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r--tools/llvmc/plugins/Base/Base.td.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvmc/plugins/Base/Base.td.in b/tools/llvmc/plugins/Base/Base.td.in
index db7e5912ae..3f70ae4599 100644
--- a/tools/llvmc/plugins/Base/Base.td.in
+++ b/tools/llvmc/plugins/Base/Base.td.in
@@ -85,9 +85,9 @@ class llvm_gcc_based <string cmd_prefix, string in_lang, string E_ext> : Tool<
(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)
]>;