[llvm-commits] [llvm] r106465 - /llvm/trunk/lib/Target/Mips/MipsInstrInfo.td

Eric Christopher echristo at apple.com
Mon Jun 21 13:19:21 PDT 2010


Author: echristo
Date: Mon Jun 21 15:19:21 2010
New Revision: 106465

URL: http://llvm.org/viewvc/llvm-project?rev=106465&view=rev
Log:
Remove isTwoAddress from Mips.

Modified:
    llvm/trunk/lib/Target/Mips/MipsInstrInfo.td

Modified: llvm/trunk/lib/Target/Mips/MipsInstrInfo.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsInstrInfo.td?rev=106465&r1=106464&r2=106465&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsInstrInfo.td (original)
+++ llvm/trunk/lib/Target/Mips/MipsInstrInfo.td Mon Jun 21 15:19:21 2010
@@ -541,7 +541,7 @@
 def MIPS_CMOV_ZERO  : PatLeaf<(i32 0)>;
 def MIPS_CMOV_NZERO : PatLeaf<(i32 1)>;
 
-let Predicates = [HasCondMov], isTwoAddress = 1 in {
+let Predicates = [HasCondMov], Constraints = "$F = $dst" in {
   def MOVN : CondMov<0x0a, "movn", MIPS_CMOV_NZERO>;
   def MOVZ : CondMov<0x0b, "movz", MIPS_CMOV_ZERO>;
 }





More information about the llvm-commits mailing list