From fda1acb389fdb2ce95087c77be45068f1d0c3ccb Mon Sep 17 00:00:00 2001 From: Bruno Cardoso Lopes Date: Sat, 19 Jun 2010 00:09:27 +0000 Subject: [PATCH] Clean up: remove now unnecessary Constraints git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106361 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86InstrSSE.td | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 4f20dbe0bf2..1c84cc7198c 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -699,11 +699,10 @@ multiclass sse12_fp_packed opc, string OpcodeStr, SDNode OpNode, /// These three forms can each be reg+reg or reg+mem, so there are a total of /// six "instructions". /// -let Constraints = "$src1 = $dst" in { multiclass basic_sse12_fp_binop_rm opc, string OpcodeStr, SDNode OpNode, bit Commutable = 0> { - let Constraints = "", isAsmParserOnly = 1 in { + let isAsmParserOnly = 1 in { defm V#NAME#SS : sse12_fp_scalar, XS, VEX_4V; @@ -757,7 +756,6 @@ multiclass basic_sse12_fp_binop_rm opc, string OpcodeStr, "2", "_sd", sdmem, sse_load_f64>, XD; } } -} // Arithmetic instructions defm ADD : basic_sse12_fp_binop_rm<0x58, "add", fadd, 1>;