diff options
author | Mikhail Glushenkov <foldr@codedgers.com> | 2010-03-31 23:51:55 +0000 |
---|---|---|
committer | Mikhail Glushenkov <foldr@codedgers.com> | 2010-03-31 23:51:55 +0000 |
commit | 62d1da0bb96a272c8bcecfaf386fae5edcd281e2 (patch) | |
tree | 7e57d0956d275d2d36a0c97a5f63dfc9e840b02b | |
parent | 9e9cca424cf0374259706cbedec89507bf89bdcf (diff) |
Pass -m32/-m64 to assembler.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100064 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc/plugins/Base/Base.td.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvmc/plugins/Base/Base.td.in b/tools/llvmc/plugins/Base/Base.td.in index ac0f665925..3ad07c0d83 100644 --- a/tools/llvmc/plugins/Base/Base.td.in +++ b/tools/llvmc/plugins/Base/Base.td.in @@ -233,6 +233,8 @@ def llvm_gcc_assembler : Tool< (switch_on "c"), (stop_compilation), (not_empty "arch"), (forward "arch"), (not_empty "Xassembler"), (forward "Xassembler"), + (switch_on "m32"), (forward "m32"), + (switch_on "m64"), (forward "m64"), (not_empty "Wa,"), (forward "Wa,"))) ]>; |