diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-19 01:22:34 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-06-19 01:22:34 +0000 |
commit | efc9b69deb0dc246047b5879b9e14b4c69e45637 (patch) | |
tree | afe0d547c2dc55a7810f4ca4b327d9e6c4363663 | |
parent | 17227db062dd70f36c5d11ede5654f8426def928 (diff) |
Remove unnecessary arguments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106371 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrSSE.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 387e84dc6d..1211eff0d3 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -719,7 +719,7 @@ multiclass sse12_fp_packed_int<bits<8> opc, string OpcodeStr, RegisterClass RC, /// six "instructions". /// multiclass basic_sse12_fp_binop_rm<bits<8> opc, string OpcodeStr, - SDNode OpNode, bit Commutable = 0> { + SDNode OpNode> { let isAsmParserOnly = 1 in { defm V#NAME#SS : sse12_fp_scalar<opc, @@ -777,8 +777,8 @@ multiclass basic_sse12_fp_binop_rm<bits<8> opc, string OpcodeStr, } // Arithmetic instructions -defm ADD : basic_sse12_fp_binop_rm<0x58, "add", fadd, 1>; -defm MUL : basic_sse12_fp_binop_rm<0x59, "mul", fmul, 1>; +defm ADD : basic_sse12_fp_binop_rm<0x58, "add", fadd>; +defm MUL : basic_sse12_fp_binop_rm<0x59, "mul", fmul>; let isCommutable = 0 in { defm SUB : basic_sse12_fp_binop_rm<0x5C, "sub", fsub>; @@ -795,7 +795,7 @@ let isCommutable = 0 in { /// This provides a total of eight "instructions". /// multiclass sse12_fp_binop_rm<bits<8> opc, string OpcodeStr, - SDNode OpNode, bit Commutable = 0> { + SDNode OpNode> { let isAsmParserOnly = 1 in { // Scalar operation, reg+reg. |