diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp index 1e7defa7941..8d9094c4c36 100644 --- a/tools/llc/llc.cpp +++ b/tools/llc/llc.cpp @@ -15,6 +15,7 @@ #include "llvm/Transforms/ConstantMerge.h" #include "llvm/Module.h" #include "llvm/Method.h" +#include "llvm/PassManager.h" #include "Support/CommandLine.h" #include #include @@ -61,9 +62,8 @@ public: // the specified method. // bool runOnMethod(Method *M) { - if (!M->isExternal() && Target.compileMethod(M)) { + if (Target.compileMethod(M)) cerr << "Error compiling " << InputFilename << "!\n"; - } return true; }