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 | bb8386af531c4ee0401ba2c5b72cc640bcc3f16c (patch) | |
tree | c61964f93c2bc28215a0be8080a841a0fa4a919b /llvm/tools/llvmc | |
parent | 7d94eb47223343bee7146917f39edafdf751375a (diff) | |
download | bcm5719-llvm-bb8386af531c4ee0401ba2c5b72cc640bcc3f16c.tar.gz bcm5719-llvm-bb8386af531c4ee0401ba2c5b72cc640bcc3f16c.zip |
Unbreak the build.
Forgot about the need to reconfigure after modifying Base.td.in....
llvm-svn: 83529
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/plugins/Base/Base.td.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvmc/plugins/Base/Base.td.in b/llvm/tools/llvmc/plugins/Base/Base.td.in index db7e5912ae9..3f70ae45993 100644 --- a/llvm/tools/llvmc/plugins/Base/Base.td.in +++ b/llvm/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) ]>; |