[llvm] r213558 - R600/SI: VOPC instructions explicitly define VCC

Tom Stellard thomas.stellard at amd.com
Mon Jul 21 09:27:24 PDT 2014


Author: tstellar
Date: Mon Jul 21 11:27:24 2014
New Revision: 213558

URL: http://llvm.org/viewvc/llvm-project?rev=213558&view=rev
Log:
R600/SI: VOPC instructions explicitly define VCC

Therefore we don't need to add it to the implict defs list.

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=213558&r1=213557&r2=213558&view=diff
==============================================================================
--- llvm/trunk/lib/Target/R600/SIInstrInfo.td (original)
+++ llvm/trunk/lib/Target/R600/SIInstrInfo.td Mon Jul 21 11:27:24 2014
@@ -389,7 +389,7 @@ multiclass VOPC_Helper <bits<8> op, Regi
     op, (ins arc:$src0, vrc:$src1),
     opName#"_e32 $dst, $src0, $src1", []
   >, VOP <opName> {
-    let Defs = !if(defExec, [VCC, EXEC], [VCC]);
+    let Defs = !if(defExec, [EXEC], []);
   }
 
   def _e64 : VOP3 <





More information about the llvm-commits mailing list