From df3bf55d49883a076c8599c3b57f0707b8dc0335 Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Mon, 7 Jan 2013 05:04:39 +0000 Subject: [PATCH] Remove unnecessary # tokens at the beginning and end of defm names. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171694 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86InstrSSE.td | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 95bb282b124..3175324b4c9 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -2732,17 +2732,17 @@ multiclass PDI_binop_all opc, string OpcodeStr, SDNode Opcode, ValueType OpVT128, ValueType OpVT256, OpndItins itins, bit IsCommutable = 0> { let Predicates = [HasAVX] in - defm V#NAME# : PDI_binop_rm, VEX_4V; let Constraints = "$src1 = $dst" in - defm #NAME# : PDI_binop_rm; + defm NAME : PDI_binop_rm; let Predicates = [HasAVX2] in defm V#NAME#Y : PDI_binop_rm, VEX_4V, VEX_L; + OpVT256, VR256, memopv4i64, i256mem, itins, + IsCommutable, 0>, VEX_4V, VEX_L; } // These are ordered here for pattern ordering requirements with the fp versions @@ -3635,13 +3635,13 @@ multiclass PDI_binop_all_int opc, string OpcodeStr, Intrinsic IntId128, Intrinsic IntId256, OpndItins itins, bit IsCommutable = 0> { let Predicates = [HasAVX] in - defm V#NAME# : PDI_binop_rm_int, VEX_4V; + defm V#NAME : PDI_binop_rm_int, VEX_4V; let Constraints = "$src1 = $dst" in - defm #NAME# : PDI_binop_rm_int; + defm NAME : PDI_binop_rm_int; let Predicates = [HasAVX2] in defm V#NAME#Y : PDI_binop_rm_int