[llvm-commits] [llvm] r101035 - /llvm/trunk/tools/bugpoint/Miscompilation.cpp

Benjamin Kramer benny.kra at googlemail.com
Mon Apr 12 05:22:19 PDT 2010


Author: d0k
Date: Mon Apr 12 07:22:19 2010
New Revision: 101035

URL: http://llvm.org/viewvc/llvm-project?rev=101035&view=rev
Log:
Boolify.

Modified:
    llvm/trunk/tools/bugpoint/Miscompilation.cpp

Modified: llvm/trunk/tools/bugpoint/Miscompilation.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/bugpoint/Miscompilation.cpp?rev=101035&r1=101034&r2=101035&view=diff
==============================================================================
--- llvm/trunk/tools/bugpoint/Miscompilation.cpp (original)
+++ llvm/trunk/tools/bugpoint/Miscompilation.cpp Mon Apr 12 07:22:19 2010
@@ -909,7 +909,7 @@
   }
   std::string SharedObject = BD.compileSharedObject(SafeModuleBC.str(), Error);
   if (!Error.empty())
-    return -1;
+    return false;
   delete Safe;
 
   // Run the code generator on the `Test' code, loading the shared library.





More information about the llvm-commits mailing list