diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-08 06:03:38 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-10-08 06:03:38 +0000 |
commit | 96c75278165e3401271e659bb9375c0b0cb76241 (patch) | |
tree | ff7a595a1969c876a83f07aec586ba539161c5a0 /tools/llvmc/plugins | |
parent | 1c70c0aaa6bcd91504049046a85ef1320be6e442 (diff) | |
download | external_llvm-96c75278165e3401271e659bb9375c0b0cb76241.zip external_llvm-96c75278165e3401271e659bb9375c0b0cb76241.tar.gz external_llvm-96c75278165e3401271e659bb9375c0b0cb76241.tar.bz2 |
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/llvmc/plugins')
-rw-r--r-- | tools/llvmc/plugins/Base/Base.td.in | 6 |
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 db7e591..3f70ae4 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) ]>; |