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

Chris Lattner sabre at nondot.org
Sun Feb 14 13:53:20 PST 2010


Author: lattner
Date: Sun Feb 14 15:53:19 2010
New Revision: 96193

URL: http://llvm.org/viewvc/llvm-project?rev=96193&view=rev
Log:
mark "addr" as having type "iPTR", eliminating some type comparisons
in hte generated dag isel fil.

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=96193&r1=96192&r2=96193&view=diff

==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsInstrInfo.td (original)
+++ llvm/trunk/lib/Target/Mips/MipsInstrInfo.td Sun Feb 14 15:53:19 2010
@@ -120,7 +120,7 @@
 
 // Mips Address Mode! SDNode frameindex could possibily be a match
 // since load and store instructions from stack used it.
-def addr : ComplexPattern<i32, 2, "SelectAddr", [frameindex], []>;
+def addr : ComplexPattern<iPTR, 2, "SelectAddr", [frameindex], []>;
 
 //===----------------------------------------------------------------------===//
 // Instructions specific format





More information about the llvm-commits mailing list