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 | 5506864ed41261b785471a6ac3c29863b5938cd2 (patch) | |
tree | 157440b7889880eded21e57c65c1fdaea07020d3 /llvm/tools/llvmc | |
parent | fa9810de3b8e639fecb0924a4f0a2ed687f303b3 (diff) | |
download | bcm5719-llvm-5506864ed41261b785471a6ac3c29863b5938cd2.tar.gz bcm5719-llvm-5506864ed41261b785471a6ac3c29863b5938cd2.zip |
Pass -m32/-m64 to assembler.
llvm-svn: 100064
Diffstat (limited to 'llvm/tools/llvmc')
-rw-r--r-- | llvm/tools/llvmc/plugins/Base/Base.td.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/tools/llvmc/plugins/Base/Base.td.in b/llvm/tools/llvmc/plugins/Base/Base.td.in index ac0f665925c..3ad07c0d83a 100644 --- a/llvm/tools/llvmc/plugins/Base/Base.td.in +++ b/llvm/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,"))) ]>; |