[llvm-commits] CVS: llvm/lib/Transforms/Utils/LowerAllocations.cpp
Devang Patel
dpatel at apple.com
Thu Jan 25 15:23:48 PST 2007
Changes in directory llvm/lib/Transforms/Utils:
LowerAllocations.cpp updated: 1.70 -> 1.71
---
Log message:
Inherit BasicBlockPass directly from Pass.
---
Diffs of the changes: (+1 -1)
LowerAllocations.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/Utils/LowerAllocations.cpp
diff -u llvm/lib/Transforms/Utils/LowerAllocations.cpp:1.70 llvm/lib/Transforms/Utils/LowerAllocations.cpp:1.71
--- llvm/lib/Transforms/Utils/LowerAllocations.cpp:1.70 Sun Jan 7 02:12:01 2007
+++ llvm/lib/Transforms/Utils/LowerAllocations.cpp Thu Jan 25 17:23:25 2007
@@ -73,7 +73,7 @@
// Publically exposed interface to pass...
const PassInfo *llvm::LowerAllocationsID = X.getPassInfo();
// createLowerAllocationsPass - Interface to this file...
-FunctionPass *llvm::createLowerAllocationsPass(bool LowerMallocArgToInteger) {
+Pass *llvm::createLowerAllocationsPass(bool LowerMallocArgToInteger) {
return new LowerAllocations(LowerMallocArgToInteger);
}
More information about the llvm-commits
mailing list