[llvm] r232106 - R600/SI: Don't print scc reg in sopc assembly string

Tom Stellard thomas.stellard at amd.com
Thu Mar 12 14:34:28 PDT 2015


Author: tstellar
Date: Thu Mar 12 16:34:28 2015
New Revision: 232106

URL: http://llvm.org/viewvc/llvm-project?rev=232106&view=rev
Log:
R600/SI: Don't print scc reg in sopc assembly string

This is how the proprietary driver prints sopc instructions.

Modified:
    llvm/trunk/lib/Target/R600/SIInstrInfo.td

Modified: llvm/trunk/lib/Target/R600/SIInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/R600/SIInstrInfo.td?rev=232106&r1=232105&r2=232106&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIInstrInfo.td (original)
+++ llvm/trunk/lib/Target/R600/SIInstrInfo.td Thu Mar 12 16:34:28 2015
@@ -521,7 +521,7 @@ multiclass SOP2_64_32 <sop2 op, string o
 class SOPC_Helper <bits<7> 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<bits<7> op, string opName, PatLeaf cond = COND_NULL>
   : SOPC_Helper<op, SSrc_32, i32, opName, cond>;





More information about the llvm-commits mailing list