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 | 302008dbeae03364ffffc1bcf77d2eb28897d98a (patch) | |
tree | 6cd09f8ff7f7b28b32c364fb6f63f44e85937880 /lib/Target/XCore/XCore.h | |
parent | 6e30ad8ce7be319ef4f30bc9163e0b736537f846 (diff) | |
download | external_llvm-302008dbeae03364ffffc1bcf77d2eb28897d98a.zip external_llvm-302008dbeae03364ffffc1bcf77d2eb28897d98a.tar.gz external_llvm-302008dbeae03364ffffc1bcf77d2eb28897d98a.tar.bz2 |
Have asm printers use formatted_raw_ostream directly to avoid a
dynamic_cast<>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75670 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/XCore/XCore.h')
-rw-r--r-- | lib/Target/XCore/XCore.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/XCore/XCore.h b/lib/Target/XCore/XCore.h index d95aab3..abc69b7 100644 --- a/lib/Target/XCore/XCore.h +++ b/lib/Target/XCore/XCore.h @@ -21,10 +21,10 @@ namespace llvm { class FunctionPass; class TargetMachine; class XCoreTargetMachine; - class raw_ostream; + class formatted_raw_ostream; FunctionPass *createXCoreISelDag(XCoreTargetMachine &TM); - FunctionPass *createXCoreCodePrinterPass(raw_ostream &OS, + FunctionPass *createXCoreCodePrinterPass(formatted_raw_ostream &OS, XCoreTargetMachine &TM, bool Verbose); } // end namespace llvm; |