Fix wierd idiom

llvm-svn: 5831
This commit is contained in:
Chris Lattner 2003-04-21 22:43:32 +00:00
parent 1610666ea5
commit f11d8a35ab
1 changed files with 1 additions and 1 deletions
llvm/lib/ExecutionEngine/Interpreter

View 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);