From: Chris Lattner Date: Sun, 4 Mar 2007 06:13:52 +0000 (+0000) Subject: add missing braces X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=569bdc7bb792aca7e3d4dc1a17cec505e7031dd1;p=oota-llvm.git add missing braces git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34905 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86InstrSSE.td b/lib/Target/X86/X86InstrSSE.td index 7421b51fbb0..dff64169a8e 100644 --- a/lib/Target/X86/X86InstrSSE.td +++ b/lib/Target/X86/X86InstrSSE.td @@ -217,19 +217,19 @@ class S3I o, Format F, dag ops, string asm, list pattern> multiclass SS_IntUnary o, string OpcodeStr, Intrinsic IntId> { def r : SSI; def m : SSI; } multiclass SD_IntUnary o, string OpcodeStr, Intrinsic IntId> { def r : SDI; def m : SDI; } @@ -337,41 +337,41 @@ multiclass scalar_sse12_fp_binop_rm opc, string OpcodeStr, Intrinsic F64Int, bit Commutable = 0> { // Scalar operation, reg+reg. def SSrr : SSI { let isCommutable = Commutable; } def SDrr : SDI { let isCommutable = Commutable; } // Scalar operation, reg+mem. def SSrm : SSI; def SDrm : SDI; // Vector intrinsic operation, reg+reg. def SSrr_Int : SSI { let isCommutable = Commutable; } def SDrr_Int : SDI { let isCommutable = Commutable; } // Vector intrinsic operation, reg+mem. def SSrm_Int : SSI; def SDrm_Int : SDI; } @@ -937,21 +937,21 @@ multiclass packed_sse12_fp_binop_rm opc, string OpcodeStr, SDNode OpNode, bit Commutable = 0> { // Packed operation, reg+reg. def PSrr : PSI { let isCommutable = Commutable; } def PDrr : PDI { let isCommutable = Commutable; } // Packed operation, reg+mem. def PSrm : PSI; def PDrm : PDI; } } @@ -1249,12 +1249,12 @@ let isTwoAddress = 1 in { multiclass PDI_binop_rm_int opc, string OpcodeStr, Intrinsic IntId, bit Commutable = 0> { def rr : PDI { let isCommutable = Commutable; } def rm : PDI; } @@ -1264,14 +1264,14 @@ let isTwoAddress = 1 in { multiclass PDI_binop_rmi_int opc, bits<8> opc2, Format ImmForm, string OpcodeStr, Intrinsic IntId> { def rr : PDI; def rm : PDI; def ri : PDIi8; } @@ -1283,12 +1283,12 @@ let isTwoAddress = 1 in { multiclass PDI_binop_rm opc, string OpcodeStr, SDNode OpNode, ValueType OpVT, bit Commutable = 0> { def rr : PDI { let isCommutable = Commutable; } def rm : PDI; } @@ -1301,12 +1301,12 @@ multiclass PDI_binop_rm opc, string OpcodeStr, SDNode OpNode, multiclass PDI_binop_rm_v2i64 opc, string OpcodeStr, SDNode OpNode, bit Commutable = 0> { def rr : PDI { let isCommutable = Commutable; } def rm : PDI; } }