From: Mikhail Glushenkov Date: Wed, 31 Mar 2010 23:51:55 +0000 (+0000) Subject: Pass -m32/-m64 to assembler. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=62d1da0bb96a272c8bcecfaf386fae5edcd281e2;p=oota-llvm.git Pass -m32/-m64 to assembler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100064 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc/plugins/Base/Base.td.in b/tools/llvmc/plugins/Base/Base.td.in index ac0f665925c..3ad07c0d83a 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,"))) ]>;