Remove unneccesary retcode var

llvm-svn: 905
This commit is contained in:
Chris Lattner 2001-10-18 20:33:21 +00:00
parent 80630ae4ed
commit 3b77672a36

View File

@ -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;
}