X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FAnalysis%2FTrace.h;h=bedd654c65217067347526e88a98ef595352f010;hb=00552e3875ee5f382db6c98286a241a7d0efe1b8;hp=32d36296712b79c16cb5c4489958cb96605219b0;hpb=9769ab22265b313171d201b5928688524a01bd87;p=oota-llvm.git diff --git a/include/llvm/Analysis/Trace.h b/include/llvm/Analysis/Trace.h index 32d36296712..bedd654c652 100644 --- a/include/llvm/Analysis/Trace.h +++ b/include/llvm/Analysis/Trace.h @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -18,14 +18,14 @@ #ifndef LLVM_ANALYSIS_TRACE_H #define LLVM_ANALYSIS_TRACE_H -#include -#include #include +#include namespace llvm { class BasicBlock; class Function; class Module; + class raw_ostream; class Trace { typedef std::vector BasicBlockListType; @@ -106,14 +106,14 @@ public: /// print - Write trace to output stream. /// - void print (std::ostream &O) const; + 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 -#endif // TRACE_H +#endif // LLVM_ANALYSIS_TRACE_H