mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
Fix unused value warning for value used only in assert.
llvm-svn: 146440
This commit is contained in:
parent
bdf3ba2207
commit
e21bd35d14
@ -85,13 +85,10 @@ bool llvm::UpgradeGlobalVariable(GlobalVariable *GV) {
|
||||
// upgraded intrinsic. All argument and return casting must be provided in
|
||||
// order to seamlessly integrate with existing context.
|
||||
void llvm::UpgradeIntrinsicCall(CallInst *CI, Function *NewFn) {
|
||||
Function *F = CI->getCalledFunction();
|
||||
LLVMContext &C = CI->getContext();
|
||||
|
||||
assert(F && "CallInst has no function associated with it.");
|
||||
|
||||
assert(CI->getCalledFunction() && "Intrinsic call is not direct?");
|
||||
if (!NewFn) return;
|
||||
|
||||
LLVMContext &C = CI->getContext();
|
||||
IRBuilder<> Builder(C);
|
||||
Builder.SetInsertPoint(CI->getParent(), CI);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user