commit | 04e2ad76f8db3d0eade6979e296219f95fc85202 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Mon Apr 21 22:43:32 2003 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Mon Apr 21 22:43:32 2003 +0000 |
tree | 746b555900f6f1d0b8ea567aea8ddb0fe9d5b7ec | |
parent | 9dbf6dddcec7a627fabfc722e124311321de8fa0 [diff] [blame] |
Fix wierd idiom git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5831 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp index 1ab065e..ff62ac8 100644 --- a/lib/ExecutionEngine/Interpreter/Execution.cpp +++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -111,7 +111,7 @@ 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);