mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
One more debug line number miss in instcombine (although the code in question isn't actually in instcombine).
llvm-svn: 132170
This commit is contained in:
parent
0181c67669
commit
d619bcd565
@ -362,12 +362,8 @@ bool SimplifyFortifiedLibCalls::fold(CallInst *CI, const TargetData *TD) {
|
||||
Function *Callee = CI->getCalledFunction();
|
||||
StringRef Name = Callee->getName();
|
||||
const FunctionType *FT = Callee->getFunctionType();
|
||||
BasicBlock *BB = CI->getParent();
|
||||
LLVMContext &Context = CI->getParent()->getContext();
|
||||
IRBuilder<> B(Context);
|
||||
|
||||
// Set the builder to the instruction after the call.
|
||||
B.SetInsertPoint(BB, CI);
|
||||
IRBuilder<> B(CI);
|
||||
|
||||
if (Name == "__memcpy_chk") {
|
||||
// Check if this has the right signature.
|
||||
|
Loading…
Reference in New Issue
Block a user