Remove dead expression.

llvm-svn: 25480
This commit is contained in:
Chris Lattner 2006-01-20 18:04:43 +00:00
parent 01e9dbfd60
commit f4277eb311

View File

@ -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();