Fix lli to print an error and exit when EE returns null but no string. Patch
authorChris Lattner <sabre@nondot.org>
Tue, 7 Jul 2009 18:31:09 +0000 (18:31 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 7 Jul 2009 18:31:09 +0000 (18:31 +0000)
by Eric Rannaud!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74930 91177308-0d34-0410-b5e6-96231b3b80d8

tools/lli/lli.cpp

index a01b0d69341ad6414fb21ec8aff837c8f2d6db7e..40b858e9d1a63758875eed944ed52ab1f8855918 100644 (file)
@@ -147,8 +147,11 @@ int main(int argc, char **argv, char * const *envp) {
   InitializeNativeTarget();
 
   EE = ExecutionEngine::create(MP, ForceInterpreter, &ErrorMsg, OLvl);
-  if (!EE && !ErrorMsg.empty()) {
-    std::cerr << argv[0] << ":error creating EE: " << ErrorMsg << "\n";
+  if (!EE) {
+    if (!ErrorMsg.empty())
+      std::cerr << argv[0] << ": error creating EE: " << ErrorMsg << "\n";
+    else
+      std::cerr << argv[0] << ": unknown error creating EE!\n";
     exit(1);
   }