diff options
-rw-r--r-- | tools/llc/llc.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index ff492aa591..1490cf40d1 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -101,7 +101,6 @@ public: //===---------------------------------------------------------------------===// int main(int argc, char **argv) { - int retCode = 0; cl::ParseCommandLineOptions(argc, argv, " llvm system compiler\n"); // Allocate a target... in the future this will be controllable on the @@ -191,7 +190,7 @@ int main(int argc, char **argv) { // runAllPasses frees the Pass objects after runAllPasses completes. Pass::runAllPassesAndFree(M.get(), Passes); - return retCode; + return 0; } |