diff options
author | Chris Lattner <sabre@nondot.org> | 2010-09-04 18:12:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-09-04 18:12:00 +0000 |
commit | 65b48b5dfc6632816313272ce2e386389049b9ca (patch) | |
tree | 242db4fc1c6e50b59c8927796c4b6147ab76f38b /llvm/lib/Analysis/CFGPrinter.cpp | |
parent | 55118e722411d8081bca5d98c79193bce0925ca3 (diff) | |
download | bcm5719-llvm-65b48b5dfc6632816313272ce2e386389049b9ca.tar.gz bcm5719-llvm-65b48b5dfc6632816313272ce2e386389049b9ca.zip |
zap dead code.
llvm-svn: 113073
Diffstat (limited to 'llvm/lib/Analysis/CFGPrinter.cpp')
-rw-r--r-- | llvm/lib/Analysis/CFGPrinter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Analysis/CFGPrinter.cpp b/llvm/lib/Analysis/CFGPrinter.cpp index 617a362062f..705bb806c09 100644 --- a/llvm/lib/Analysis/CFGPrinter.cpp +++ b/llvm/lib/Analysis/CFGPrinter.cpp @@ -69,7 +69,6 @@ namespace { struct CFGPrinter : public FunctionPass { static char ID; // Pass identification, replacement for typeid CFGPrinter() : FunctionPass(ID) {} - explicit CFGPrinter(char &pid) : FunctionPass(pid) {} virtual bool runOnFunction(Function &F) { std::string Filename = "cfg." + F.getNameStr() + ".dot"; @@ -102,7 +101,6 @@ namespace { struct CFGOnlyPrinter : public FunctionPass { static char ID; // Pass identification, replacement for typeid CFGOnlyPrinter() : FunctionPass(ID) {} - explicit CFGOnlyPrinter(char &pid) : FunctionPass(pid) {} virtual bool runOnFunction(Function &F) { std::string Filename = "cfg." + F.getNameStr() + ".dot"; errs() << "Writing '" << Filename << "'..."; |