diff options
author | David Greene <greened@obbligato.org> | 2009-07-14 20:18:05 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-07-14 20:18:05 +0000 |
commit | a31f96cf2bb2d4868d629b17b4e8ec106a23e776 (patch) | |
tree | 90d314a81dfda17ca4c96c57774b0a789e25df90 /llvm/lib/Target/PIC16/PIC16.h | |
parent | f6a5ab9abddb9c57c116449490114ec695f7e85f (diff) | |
download | bcm5719-llvm-a31f96cf2bb2d4868d629b17b4e8ec106a23e776.tar.gz bcm5719-llvm-a31f96cf2bb2d4868d629b17b4e8ec106a23e776.zip |
Have asm printers use formatted_raw_ostream directly to avoid a
dynamic_cast<>.
llvm-svn: 75670
Diffstat (limited to 'llvm/lib/Target/PIC16/PIC16.h')
-rw-r--r-- | llvm/lib/Target/PIC16/PIC16.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PIC16/PIC16.h b/llvm/lib/Target/PIC16/PIC16.h index 3b6fcee4a2c..0184b90f872 100644 --- a/llvm/lib/Target/PIC16/PIC16.h +++ b/llvm/lib/Target/PIC16/PIC16.h @@ -27,7 +27,7 @@ namespace llvm { class PIC16TargetMachine; class FunctionPass; class MachineCodeEmitter; - class raw_ostream; + class formatted_raw_ostream; namespace PIC16CC { enum CondCodes { @@ -343,7 +343,7 @@ namespace PIC16CC { FunctionPass *createPIC16ISelDag(PIC16TargetMachine &TM); - FunctionPass *createPIC16CodePrinterPass(raw_ostream &OS, + FunctionPass *createPIC16CodePrinterPass(formatted_raw_ostream &OS, PIC16TargetMachine &TM, bool Verbose); // Banksel optimzer pass. |