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

Jim Laskey jlaskey at apple.com
Wed Jan 24 10:45:32 PST 2007



Changes in directory llvm/include/llvm/Target:

MRegisterInfo.h updated: 1.87 -> 1.88
---
Log message:

Repair debug frames as a prelude to eh_frames.  Switched to using MachineMoves
by value so that clean up is less confusing (these vectors tend to be small.)


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

 MRegisterInfo.h |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: llvm/include/llvm/Target/MRegisterInfo.h
diff -u llvm/include/llvm/Target/MRegisterInfo.h:1.87 llvm/include/llvm/Target/MRegisterInfo.h:1.88
--- llvm/include/llvm/Target/MRegisterInfo.h:1.87	Mon Jan 22 18:51:23 2007
+++ llvm/include/llvm/Target/MRegisterInfo.h	Wed Jan 24 12:45:12 2007
@@ -456,7 +456,7 @@
   /// getInitialFrameState - Returns a list of machine moves that are assumed
   /// on entry to all functions.  Note that LabelID is ignored (assumed to be
   /// the beginning of the function.)
-  virtual void getInitialFrameState(std::vector<MachineMove *> &Moves) const;
+  virtual void getInitialFrameState(std::vector<MachineMove> &Moves) const;
 };
 
 // This is useful when building DenseMaps keyed on virtual registers






More information about the llvm-commits mailing list