Fix wierd idiom
[oota-llvm.git] / lib / ExecutionEngine / Interpreter / Execution.cpp
index 1ab065e96125223d0db1638b3b6a5570b3e334a0..ff62ac849655b70a1ac0f516113b85741687f949 100644 (file)
@@ -111,7 +111,7 @@ static GenericValue getOperandValue(Value *V, ExecutionContext &SF) {
     default:
       cerr << "Unhandled ConstantExpr: " << CE << "\n";
       abort();
-      { GenericValue V; return V; }
+      return GenericValue();
     }
   } else if (Constant *CPV = dyn_cast<Constant>(V)) {
     return TheEE->getConstantValue(CPV);