mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-21 21:11:36 +00:00
Remove this printer
llvm-svn: 14980
This commit is contained in:
parent
5be5bc8453
commit
ba8dc803cb
@ -19,29 +19,10 @@
|
||||
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/Pass.h"
|
||||
#include "llvm/Analysis/InstForest.h"
|
||||
#include "llvm/Support/CallSite.h"
|
||||
#include <iostream>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
namespace {
|
||||
struct InstForestHelper : public FunctionPass {
|
||||
Function *F;
|
||||
virtual bool runOnFunction(Function &Func) { F = &Func; return false; }
|
||||
|
||||
void print(std::ostream &OS) const {
|
||||
std::cout << InstForest<char>(F);
|
||||
}
|
||||
|
||||
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
||||
AU.setPreservesAll();
|
||||
}
|
||||
};
|
||||
|
||||
RegisterAnalysis<InstForestHelper> P1("instforest", "InstForest Printer");
|
||||
}
|
||||
|
||||
namespace {
|
||||
/// ExternalFunctionsPassedConstants - This pass prints out call sites to
|
||||
/// external functions that are called with constant arguments. This can be
|
||||
|
Loading…
x
Reference in New Issue
Block a user