[llvm-commits] CVS: llvm/lib/Transforms/IPO/RaiseAllocations.cpp
LLVM
llvm at cs.uiuc.edu
Sat Jul 17 17:22:24 PDT 2004
Changes in directory llvm/lib/Transforms/IPO:
RaiseAllocations.cpp updated: 1.22 -> 1.23
---
Log message:
bug 122: http://llvm.cs.uiuc.edu/PR122 :
- Replace ConstantPointerRef usage with GlobalValue usage
---
Diffs of the changes: (+6 -6)
Index: llvm/lib/Transforms/IPO/RaiseAllocations.cpp
diff -u llvm/lib/Transforms/IPO/RaiseAllocations.cpp:1.22 llvm/lib/Transforms/IPO/RaiseAllocations.cpp:1.23
--- llvm/lib/Transforms/IPO/RaiseAllocations.cpp:1.22 Sat Dec 6 19:42:08 2003
+++ llvm/lib/Transforms/IPO/RaiseAllocations.cpp Sat Jul 17 19:22:14 2004
@@ -158,9 +158,9 @@
Changed = true;
++NumRaised;
}
- } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(U)) {
- Users.insert(Users.end(), CPR->use_begin(), CPR->use_end());
- EqPointers.push_back(CPR);
+ } else if (GlobalValue *GV = dyn_cast<GlobalValue>(U)) {
+ Users.insert(Users.end(), GV->use_begin(), GV->use_end());
+ EqPointers.push_back(GV);
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
if (CE->getOpcode() == Instruction::Cast) {
Users.insert(Users.end(), CE->use_begin(), CE->use_end());
@@ -207,9 +207,9 @@
Changed = true;
++NumRaised;
}
- } else if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(U)) {
- Users.insert(Users.end(), CPR->use_begin(), CPR->use_end());
- EqPointers.push_back(CPR);
+ } else if (GlobalValue *GV = dyn_cast<GlobalValue>(U)) {
+ Users.insert(Users.end(), GV->use_begin(), GV->use_end());
+ EqPointers.push_back(GV);
} else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(U)) {
if (CE->getOpcode() == Instruction::Cast) {
Users.insert(Users.end(), CE->use_begin(), CE->use_end());
More information about the llvm-commits
mailing list