From: Chris Lattner Date: Thu, 9 Mar 2006 06:09:41 +0000 (+0000) Subject: fix a pasto X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=e2b59d2760a4f72c84c262af67642ba09e91bfd1;p=oota-llvm.git fix a pasto git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26627 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/StripSymbols.cpp b/lib/Transforms/IPO/StripSymbols.cpp index e1f7ea97ee3..8fcbdd16e5a 100644 --- a/lib/Transforms/IPO/StripSymbols.cpp +++ b/lib/Transforms/IPO/StripSymbols.cpp @@ -100,7 +100,7 @@ bool StripSymbols::runOnModule(Module &M) { // Remove all of the calls to the debugger intrinsics, and remove them from // the module. if (FuncStart) { - Value *RV = UndefValue::get(StopPoint->getFunctionType()->getReturnType()); + Value *RV = UndefValue::get(FuncStart->getFunctionType()->getReturnType()); while (!FuncStart->use_empty()) { CallInst *CI = cast(FuncStart->use_back()); Value *Arg = CI->getOperand(1);