summaryrefslogtreecommitdiffstats
path: root/include/llvm/Analysis/Trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/Analysis/Trace.h')
-rw-r--r--include/llvm/Analysis/Trace.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/llvm/Analysis/Trace.h b/include/llvm/Analysis/Trace.h
index fd615fc..99651e1 100644
--- a/include/llvm/Analysis/Trace.h
+++ b/include/llvm/Analysis/Trace.h
@@ -18,7 +18,6 @@
#ifndef LLVM_ANALYSIS_TRACE_H
#define LLVM_ANALYSIS_TRACE_H
-#include "llvm/Support/Streams.h"
#include <vector>
#include <cassert>
@@ -26,6 +25,7 @@ namespace llvm {
class BasicBlock;
class Function;
class Module;
+ class raw_ostream;
class Trace {
typedef std::vector<BasicBlock *> BasicBlockListType;
@@ -106,13 +106,12 @@ public:
/// print - Write trace to output stream.
///
- void print (std::ostream &O) const;
- void print (std::ostream *O) const { if (O) print(*O); }
+ void print(raw_ostream &O) const;
/// dump - Debugger convenience method; writes trace to standard error
/// output stream.
///
- void dump () const;
+ void dump() const;
};
} // end namespace llvm
OpenPOWER on IntegriCloud