summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/IPO/InlineSimple.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-10-18 01:32:34 +0000
committerChris Lattner <sabre@nondot.org>2001-10-18 01:32:34 +0000
commit5398a6eb6c371051617379809a2438712cedd49d (patch)
tree2445af8dc2451175654431f08e1059c8e8d37126 /llvm/lib/Transforms/IPO/InlineSimple.cpp
parentf71b8274417db06af09a4fa9808813ddc84d4d1f (diff)
downloadbcm5719-llvm-5398a6eb6c371051617379809a2438712cedd49d.tar.gz
bcm5719-llvm-5398a6eb6c371051617379809a2438712cedd49d.zip
Convert optimizations to the pass infrastructure
llvm-svn: 873
Diffstat (limited to 'llvm/lib/Transforms/IPO/InlineSimple.cpp')
-rw-r--r--llvm/lib/Transforms/IPO/InlineSimple.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/InlineSimple.cpp b/llvm/lib/Transforms/IPO/InlineSimple.cpp
index c135f6566b2..ef92b2d07ca 100644
--- a/llvm/lib/Transforms/IPO/InlineSimple.cpp
+++ b/llvm/lib/Transforms/IPO/InlineSimple.cpp
@@ -246,7 +246,7 @@ static inline bool DoMethodInlining(BasicBlock *BB) {
return false;
}
-bool opt::DoMethodInlining(Method *M) {
+bool opt::MethodInlining::doMethodInlining(Method *M) {
bool Changed = false;
// Loop through now and inline instructions a basic block at a time...
OpenPOWER on IntegriCloud