mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-15 15:48:38 +00:00
fix a pasto
llvm-svn: 26627
This commit is contained in:
parent
18d6bde9bb
commit
67a978dc1d
@ -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<CallInst>(FuncStart->use_back());
|
||||
Value *Arg = CI->getOperand(1);
|
||||
|
Loading…
Reference in New Issue
Block a user