aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LowerAllocations.cpp
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-08-14 06:09:32 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-08-14 06:09:32 +0000
commitbf3c4cfaad706db21ac82a4376e1899d0d7f0935 (patch)
tree0554aebd575c26ce52252d94d08c2c151dc7ffbf /lib/Transforms/Utils/LowerAllocations.cpp
parent1d3fa21cdd115b48241ff031f01e6b489b077abf (diff)
Factory methods for function passes now return type FunctionPass *.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7839 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LowerAllocations.cpp')
-rw-r--r--lib/Transforms/Utils/LowerAllocations.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LowerAllocations.cpp b/lib/Transforms/Utils/LowerAllocations.cpp
index c5014b48e6..53584d9d3e 100644
--- a/lib/Transforms/Utils/LowerAllocations.cpp
+++ b/lib/Transforms/Utils/LowerAllocations.cpp
@@ -47,7 +47,7 @@ namespace {
}
// createLowerAllocationsPass - Interface to this file...
-Pass *createLowerAllocationsPass() {
+FunctionPass *createLowerAllocationsPass() {
return new LowerAllocations();
}