commit | 6f54b378efb88d51aba9ae8dbc71135962aea4e1 | [log] [tgz] |
---|---|---|
author | Benjamin Kramer <benny.kra@googlemail.com> | Mon Apr 12 12:22:19 2010 +0000 |
committer | Benjamin Kramer <benny.kra@googlemail.com> | Mon Apr 12 12:22:19 2010 +0000 |
tree | f76a3db1ece3fb8e6f67db435b551e5e007dfd41 | |
parent | 9cd371f9e8528757a602912938c8c03dda1bcfa0 [diff] [blame] |
Boolify. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101035 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/bugpoint/Miscompilation.cpp b/tools/bugpoint/Miscompilation.cpp index 96aab95..6af1f6a 100644 --- a/tools/bugpoint/Miscompilation.cpp +++ b/tools/bugpoint/Miscompilation.cpp
@@ -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.