mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 09:53:54 +00:00
Remove dead expression.
llvm-svn: 25480
This commit is contained in:
parent
01e9dbfd60
commit
f4277eb311
@ -166,7 +166,7 @@ Instruction* llvm::UpgradeIntrinsicCall(CallInst *CI) {
|
||||
bool llvm::UpgradeCallsToIntrinsic(Function* F) {
|
||||
if (Function* newF = UpgradeIntrinsicFunction(F)) {
|
||||
for (Value::use_iterator UI = F->use_begin(), UE = F->use_end();
|
||||
UI != UE; UI) {
|
||||
UI != UE; ) {
|
||||
if (CallInst* CI = dyn_cast<CallInst>(*UI++)) {
|
||||
std::vector<Value*> Oprnds;
|
||||
User::op_iterator OI = CI->op_begin();
|
||||
|
Loading…
x
Reference in New Issue
Block a user