From efc9b69deb0dc246047b5879b9e14b4c69e45637 Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Lopes Date: Sat, 19 Jun 2010 01:22:34 +0000 Subject: [PATCH] Remove unnecessary arguments git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106371 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86InstrSSE.td | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 387e84dc6de..1211eff0d3d 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -719,7 +719,7 @@ multiclass sse12_fp_packed_int opc, string OpcodeStr, RegisterClass RC, /// six "instructions". /// multiclass basic_sse12_fp_binop_rm opc, string OpcodeStr, - SDNode OpNode, bit Commutable = 0> { + SDNode OpNode> { let isAsmParserOnly = 1 in { defm V#NAME#SS : sse12_fp_scalar 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 opc, string OpcodeStr, - SDNode OpNode, bit Commutable = 0> { + SDNode OpNode> { let isAsmParserOnly = 1 in { // Scalar operation, reg+reg. -- 2.34.1