[llvm-commits] CVS: llvm/include/llvm/Target/TargetLowering.h

Evan Cheng evan.cheng at apple.com
Thu Nov 9 09:53:17 PST 2006



Changes in directory llvm/include/llvm/Target:

TargetLowering.h updated: 1.88 -> 1.89
---
Log message:

Rename ISD::MemOpAddrMode to ISD::MemIndexedMode

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

 TargetLowering.h |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/include/llvm/Target/TargetLowering.h
diff -u llvm/include/llvm/Target/TargetLowering.h:1.88 llvm/include/llvm/Target/TargetLowering.h:1.89
--- llvm/include/llvm/Target/TargetLowering.h:1.88	Wed Nov  8 22:29:09 2006
+++ llvm/include/llvm/Target/TargetLowering.h	Thu Nov  9 11:53:01 2006
@@ -377,7 +377,7 @@
   /// can be legally represented as pre-indexed load / store address.
   virtual bool getPreIndexedAddressParts(SDNode *N, SDOperand &Base,
                                          SDOperand &Offset,
-                                         ISD::MemOpAddrMode &AM,
+                                         ISD::MemIndexedMode &AM,
                                          SelectionDAG &DAG) {
     return false;
   }
@@ -387,7 +387,7 @@
   /// combined with a load / store to form a post-indexed load / store.
   virtual bool getPostIndexedAddressParts(SDNode *N, SDNode *Op,
                                           SDOperand &Base, SDOperand &Offset,
-                                          ISD::MemOpAddrMode &AM,
+                                          ISD::MemIndexedMode &AM,
                                           SelectionDAG &DAG) {
     return false;
   }
@@ -869,7 +869,7 @@
   /// LegalizeAction that indicates how instruction selection should deal with
   /// the store.
   uint64_t StoreXActions;
-  
+
   ValueTypeActionImpl ValueTypeActions;
 
   std::vector<double> LegalFPImmediates;






More information about the llvm-commits mailing list