[llvm-commits] CVS: llvm/include/llvm/Target/MRegisterInfo.h
Chris Lattner
sabre at nondot.org
Wed Jan 31 21:32:21 PST 2007
Changes in directory llvm/include/llvm/Target:
MRegisterInfo.h updated: 1.89 -> 1.90
---
Log message:
rename DenseMap to IndexedMap.
---
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.89 llvm/include/llvm/Target/MRegisterInfo.h:1.90
--- llvm/include/llvm/Target/MRegisterInfo.h:1.89 Thu Jan 25 16:12:41 2007
+++ llvm/include/llvm/Target/MRegisterInfo.h Wed Jan 31 23:32:05 2007
@@ -465,7 +465,7 @@
virtual void getInitialFrameState(std::vector<MachineMove> &Moves) const;
};
-// This is useful when building DenseMaps keyed on virtual registers
+// This is useful when building IndexedMaps keyed on virtual registers
struct VirtReg2IndexFunctor : std::unary_function<unsigned, unsigned> {
unsigned operator()(unsigned Reg) const {
return Reg - MRegisterInfo::FirstVirtualRegister;
More information about the llvm-commits
mailing list