Fix lli to print an error and exit when EE returns null but no string. Patch
[oota-llvm.git] / 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);
   }