Implement InstCombine/getelementptr.ll:test9, which is the source of many
[oota-llvm.git] / lib / AsmParser / Parser.cpp
index e8a7bdbbb9896010066edbd28052b88f6e446758..b7ece9fdc52f38a992308f34a8c1b04586f7a9b5 100644 (file)
 
 #include "ParserInternals.h"
 #include "llvm/Module.h"
-#include "llvm/Analysis/Verifier.h"
+using namespace llvm;
 
 // The useful interface defined by this file... Parse an ASCII file, and return
 // the internal representation in a nice slice'n'dice'able representation.
 //
-Module *ParseAssemblyFile(const std::string &Filename) {
+Module *llvm::ParseAssemblyFile(const std::string &Filename) {
   FILE *F = stdin;
 
   if (Filename != "-") {