R600/SI: Remove cond operand to VOPCX classes
authorMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 23 Mar 2015 18:45:20 +0000 (18:45 +0000)
committerMatt Arsenault <Matthew.Arsenault@amd.com>
Mon, 23 Mar 2015 18:45:20 +0000 (18:45 +0000)
It isn't used, and these will probably never be directly selected.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232986 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/R600/SIInstrInfo.td

index 86e10826cf209e573873967feb0b470b40bce13c..910ee075c3049697ab35db48d17dc344412a88e3 100644 (file)
@@ -1340,17 +1340,17 @@ multiclass VOPCX <vopc op, string opName, VOPProfile P,
                   PatLeaf cond = COND_NULL>
   : VOPCInst <op, opName, P, cond, 1>;
 
-multiclass VOPCX_F32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
-  VOPCX <op, opName, VOP_F32_F32_F32, cond>;
+multiclass VOPCX_F32 <vopc op, string opName> :
+  VOPCX <op, opName, VOP_F32_F32_F32, COND_NULL>;
 
-multiclass VOPCX_F64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
-  VOPCX <op, opName, VOP_F64_F64_F64, cond>;
+multiclass VOPCX_F64 <vopc op, string opName> :
+  VOPCX <op, opName, VOP_F64_F64_F64, COND_NULL>;
 
-multiclass VOPCX_I32 <vopc op, string opName, PatLeaf cond = COND_NULL> :
-  VOPCX <op, opName, VOP_I32_I32_I32, cond>;
+multiclass VOPCX_I32 <vopc op, string opName> :
+  VOPCX <op, opName, VOP_I32_I32_I32, COND_NULL>;
 
-multiclass VOPCX_I64 <vopc op, string opName, PatLeaf cond = COND_NULL> :
-  VOPCX <op, opName, VOP_I64_I64_I64, cond>;
+multiclass VOPCX_I64 <vopc op, string opName> :
+  VOPCX <op, opName, VOP_I64_I64_I64, COND_NULL>;
 
 multiclass VOP3_Helper <vop3 op, string opName, dag outs, dag ins, string asm,
                         list<dag> pat, int NumSrcArgs, bit HasMods> : VOP3_m <