aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips/Mips.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2008-08-21 00:14:44 +0000
committerOwen Anderson <resistor@mac.com>2008-08-21 00:14:44 +0000
commit847b99b2df4534498b514c439324e7c60de5c3b7 (patch)
treea72c740cc8590cd63825fcf08f71c5e2f625ca55 /lib/Target/Mips/Mips.h
parent091c331b18d2e8d40d35d7b9b0d422f832f2fdc5 (diff)
downloadexternal_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.zip
external_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.tar.gz
external_llvm-847b99b2df4534498b514c439324e7c60de5c3b7.tar.bz2
Use raw_ostream throughout the AsmPrinter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/Mips.h')
-rw-r--r--lib/Target/Mips/Mips.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/Mips/Mips.h b/lib/Target/Mips/Mips.h
index 0387c6a..1dc53ca 100644
--- a/lib/Target/Mips/Mips.h
+++ b/lib/Target/Mips/Mips.h
@@ -21,10 +21,11 @@ namespace llvm {
class MipsTargetMachine;
class FunctionPass;
class MachineCodeEmitter;
+ class raw_ostream;
FunctionPass *createMipsISelDag(MipsTargetMachine &TM);
FunctionPass *createMipsDelaySlotFillerPass(MipsTargetMachine &TM);
- FunctionPass *createMipsCodePrinterPass(std::ostream &OS,
+ FunctionPass *createMipsCodePrinterPass(raw_ostream &OS,
MipsTargetMachine &TM);
} // end namespace llvm;