[llvm-commits] CVS: llvm/lib/Target/TargetSelectionDAG.td

Evan Cheng evan.cheng at apple.com
Fri Dec 9 17:59:47 PST 2005



Changes in directory llvm/lib/Target:

TargetSelectionDAG.td updated: 1.15 -> 1.16
---
Log message:

Use SDTCisPtrTy type property for store address.


---
Diffs of the changes:  (+2 -2)

 TargetSelectionDAG.td |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/lib/Target/TargetSelectionDAG.td
diff -u llvm/lib/Target/TargetSelectionDAG.td:1.15 llvm/lib/Target/TargetSelectionDAG.td:1.16
--- llvm/lib/Target/TargetSelectionDAG.td:1.15	Fri Dec  9 18:48:20 2005
+++ llvm/lib/Target/TargetSelectionDAG.td	Fri Dec  9 19:59:36 2005
@@ -138,7 +138,7 @@
 ]>;
 
 def SDTStore : SDTypeProfile<0, 2, [ // store
-  SDTCisInt<1>  
+  SDTCisPtrTy<1>  
 ]>;
 
 //===----------------------------------------------------------------------===//
@@ -230,7 +230,7 @@
 
 def writeport  : SDNode<"ISD::WRITEPORT"  , SDTWritePort, [SDNPHasChain]>;
 
-def load       : SDNode<"ISD::LOAD"       , SDTLoad, [SDNPHasChain]>;
+def load       : SDNode<"ISD::LOAD"       , SDTLoad,  [SDNPHasChain]>;
 def store      : SDNode<"ISD::STORE"      , SDTStore, [SDNPHasChain]>;
 
 //===----------------------------------------------------------------------===//






More information about the llvm-commits mailing list