summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineJumpTableInfo.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-23 01:12:47 +0000
committerChris Lattner <sabre@nondot.org>2009-08-23 01:12:47 +0000
commitd74c556e9aaad81a188158b7ba12d7ccffb30936 (patch)
treee65b120be611eddb210982e0af5c0d7cebf0761f /include/llvm/CodeGen/MachineJumpTableInfo.h
parent19ef66968965f829336f4dc01fec05bfa72712c3 (diff)
downloadllvm-d74c556e9aaad81a188158b7ba12d7ccffb30936.tar.gz
llvm-d74c556e9aaad81a188158b7ba12d7ccffb30936.tar.bz2
llvm-d74c556e9aaad81a188158b7ba12d7ccffb30936.tar.xz
convert some stuff to work on raw_ostreams instead of std::ostream.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79803 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineJumpTableInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineJumpTableInfo.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/MachineJumpTableInfo.h b/include/llvm/CodeGen/MachineJumpTableInfo.h
index 3896691bcd..3ff2f2e8c7 100644
--- a/include/llvm/CodeGen/MachineJumpTableInfo.h
+++ b/include/llvm/CodeGen/MachineJumpTableInfo.h
@@ -21,13 +21,13 @@
#define LLVM_CODEGEN_MACHINEJUMPTABLEINFO_H
#include <vector>
-#include <iosfwd>
#include <cassert>
namespace llvm {
class MachineBasicBlock;
class TargetData;
+class raw_ostream;
/// MachineJumpTableEntry - One jump table in the jump table info.
///
@@ -79,8 +79,7 @@ public:
/// print - Used by the MachineFunction printer to print information about
/// jump tables. Implemented in MachineFunction.cpp
///
- void print(std::ostream &OS) const;
- void print(std::ostream *OS) const { if (OS) print(*OS); }
+ void print(raw_ostream &OS) const;
/// dump - Call to stderr.
///