mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-22 10:24:26 +00:00
Enable *BasicBlockPass::createPrinterPass()
Enables raw_ostream I/O for BasicBlockPass. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174776 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -23,6 +23,7 @@
|
||||
namespace llvm {
|
||||
class FunctionPass;
|
||||
class ModulePass;
|
||||
class BasicBlockPass;
|
||||
class raw_ostream;
|
||||
|
||||
/// createPrintModulePass - Create and return a pass that writes the
|
||||
@ -37,6 +38,11 @@ namespace llvm {
|
||||
raw_ostream *OS,
|
||||
bool DeleteStream=false);
|
||||
|
||||
/// createPrintBasicBlockPass - Create and return a pass that writes the
|
||||
/// BB to the specified raw_ostream.
|
||||
BasicBlockPass *createPrintBasicBlockPass(raw_ostream *OS,
|
||||
bool DeleteStream=false,
|
||||
const std::string &Banner = "");
|
||||
} // End llvm namespace
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user