summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/Internalize.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-02-05 21:19:13 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-02-05 21:19:13 +0000
commit688b0490e22eb67623f5aaa24406209be74efcb2 (patch)
tree69eb17e5f7e3136a7b336ed6c5d0a2ed5692a44d /lib/Transforms/IPO/Internalize.cpp
parentcdedc3b336ff7552e439723fdb96dda68b1dbbdb (diff)
downloadllvm-688b0490e22eb67623f5aaa24406209be74efcb2.tar.gz
llvm-688b0490e22eb67623f5aaa24406209be74efcb2.tar.bz2
llvm-688b0490e22eb67623f5aaa24406209be74efcb2.tar.xz
For PR411:
Adjust to changes in Module interface: getMainFunction() -> getFunction("main") getNamedFunction(X) -> getFunction(X) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33922 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/Internalize.cpp')
-rw-r--r--lib/Transforms/IPO/Internalize.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/Internalize.cpp b/lib/Transforms/IPO/Internalize.cpp
index 54312b70b1..eebc70a47f 100644
--- a/lib/Transforms/IPO/Internalize.cpp
+++ b/lib/Transforms/IPO/Internalize.cpp
@@ -95,7 +95,7 @@ bool InternalizePass::runOnModule(Module &M) {
// internalize the module, it must be a library or something.
//
if (ExternalNames.empty()) {
- Function *MainFunc = M.getMainFunction();
+ Function *MainFunc = M.getFunction("main");
if (MainFunc == 0 || MainFunc->isDeclaration())
return false; // No main found, must be a library...