mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Add #includes
s/PrintMethodPass/PrintFunctionPass git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b7653df085
commit
8bfa89c7f5
@ -14,10 +14,12 @@
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Function.h"
|
||||
#include "llvm/iPHINode.h"
|
||||
#include "llvm/Type.h"
|
||||
#include "llvm/PassManager.h"
|
||||
#include "llvm/Bytecode/Reader.h"
|
||||
#include "llvm/Assembly/Parser.h"
|
||||
#include "llvm/Assembly/PrintModulePass.h"
|
||||
#include "llvm/Assembly/Writer.h"
|
||||
#include "llvm/Analysis/Writer.h"
|
||||
#include "llvm/Analysis/InstForest.h"
|
||||
#include "llvm/Analysis/Dominators.h"
|
||||
@ -129,7 +131,7 @@ Pass *New(const string &Message) {
|
||||
|
||||
|
||||
Pass *NewPrintFunction(const string &Message) {
|
||||
return new PrintMethodPass(Message, &std::cout);
|
||||
return new PrintFunctionPass(Message, &std::cout);
|
||||
}
|
||||
Pass *NewPrintModule(const string &Message) {
|
||||
return new PrintModulePass(&std::cout);
|
||||
|
Loading…
Reference in New Issue
Block a user