From: Tom Stellard Date: Thu, 12 Mar 2015 21:34:28 +0000 (+0000) Subject: R600/SI: Don't print scc reg in sopc assembly string X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d996c4b8add82b117bb189425b8e8492b281524b;p=oota-llvm.git R600/SI: Don't print scc reg in sopc assembly string This is how the proprietary driver prints sopc instructions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232106 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/R600/SIInstrInfo.td b/lib/Target/R600/SIInstrInfo.td index 4967da3ec8c..b557b068018 100644 --- a/lib/Target/R600/SIInstrInfo.td +++ b/lib/Target/R600/SIInstrInfo.td @@ -521,7 +521,7 @@ multiclass SOP2_64_32 pattern> : SOP2_m < class SOPC_Helper op, RegisterOperand rc, ValueType vt, string opName, PatLeaf cond> : SOPC < op, (outs SCCReg:$dst), (ins rc:$src0, rc:$src1), - opName#" $dst, $src0, $src1", []>; + opName#" $src0, $src1", []>; class SOPC_32 op, string opName, PatLeaf cond = COND_NULL> : SOPC_Helper;