diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-27 07:27:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-27 07:27:19 +0000 |
commit | f998685cd9754e4c1de1c98343c3f366703c6561 (patch) | |
tree | 73f7788f47892cc3c25711efda2a88b42b5050ba /llvm/lib/Transforms/Utils | |
parent | 8157a90b5dc7a4a68b7dc44e7310b37845adfe40 (diff) | |
download | bcm5719-llvm-f998685cd9754e4c1de1c98343c3f366703c6561.tar.gz bcm5719-llvm-f998685cd9754e4c1de1c98343c3f366703c6561.zip |
s/Method/Function
llvm-svn: 2336
Diffstat (limited to 'llvm/lib/Transforms/Utils')
-rw-r--r-- | llvm/lib/Transforms/Utils/CloneFunction.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/Transforms/Utils/CloneFunction.cpp b/llvm/lib/Transforms/Utils/CloneFunction.cpp index aa627979fb0..808ea48e673 100644 --- a/llvm/lib/Transforms/Utils/CloneFunction.cpp +++ b/llvm/lib/Transforms/Utils/CloneFunction.cpp @@ -7,7 +7,7 @@ #include "llvm/Instruction.h" #include <map> -// FIXME: This should be merged with MethodInlining +// FIXME: This should be merged with FunctionInlining // RemapInstruction - Convert the instruction operands from referencing the // current values into those specified by ValueMap. diff --git a/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp b/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp index 9a3b52c49cf..0fa87f8e8d2 100644 --- a/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp +++ b/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp @@ -5,7 +5,7 @@ // //===----------------------------------------------------------------------===// -#include "llvm/Transforms/UnifyMethodExitNodes.h" +#include "llvm/Transforms/UnifyFunctionExitNodes.h" #include "llvm/BasicBlock.h" #include "llvm/Function.h" #include "llvm/iTerminators.h" @@ -13,7 +13,7 @@ #include "llvm/Type.h" using std::vector; -AnalysisID UnifyMethodExitNodes::ID(AnalysisID::create<UnifyMethodExitNodes>()); +AnalysisID UnifyFunctionExitNodes::ID(AnalysisID::create<UnifyFunctionExitNodes>()); // UnifyAllExitNodes - Unify all exit nodes of the CFG by creating a new @@ -22,7 +22,7 @@ AnalysisID UnifyMethodExitNodes::ID(AnalysisID::create<UnifyMethodExitNodes>()); // // If there are no return stmts in the Function, a null pointer is returned. // -bool UnifyMethodExitNodes::doit(Function *M, BasicBlock *&ExitNode) { +bool UnifyFunctionExitNodes::doit(Function *M, BasicBlock *&ExitNode) { // Loop over all of the blocks in a function, tracking all of the blocks that // return. // |