Remove dead expression.
authorChris Lattner <sabre@nondot.org>
Fri, 20 Jan 2006 18:04:43 +0000 (18:04 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Jan 2006 18:04:43 +0000 (18:04 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25480 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/AutoUpgrade.cpp

index 568d08ab7a0240232396e12f7d6e3f5010333c4f..4f0f620c84578a0fec3d992609cbc7500eda06c8 100644 (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();