Deleted Added
full compact
Trace.h (208954) Trace.h (249423)
1//===- llvm/Analysis/Trace.h - Represent one trace of LLVM code -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13// block: because the trace path is assumed to be hot, optimizations for the
14// fall-through path are made at the expense of the non-fall-through paths.
15//
16//===----------------------------------------------------------------------===//
17
18#ifndef LLVM_ANALYSIS_TRACE_H
19#define LLVM_ANALYSIS_TRACE_H
20
1//===- llvm/Analysis/Trace.h - Represent one trace of LLVM code -*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//

--- 4 unchanged lines hidden (view full) ---

13// block: because the trace path is assumed to be hot, optimizations for the
14// fall-through path are made at the expense of the non-fall-through paths.
15//
16//===----------------------------------------------------------------------===//
17
18#ifndef LLVM_ANALYSIS_TRACE_H
19#define LLVM_ANALYSIS_TRACE_H
20
21#include <vector>
22#include <cassert>
21#include <cassert>
22#include <vector>
23
24namespace llvm {
25 class BasicBlock;
26 class Function;
27 class Module;
28 class raw_ostream;
29
30class Trace {

--- 80 unchanged lines hidden (view full) ---

111 /// dump - Debugger convenience method; writes trace to standard error
112 /// output stream.
113 ///
114 void dump() const;
115};
116
117} // end namespace llvm
118
23
24namespace llvm {
25 class BasicBlock;
26 class Function;
27 class Module;
28 class raw_ostream;
29
30class Trace {

--- 80 unchanged lines hidden (view full) ---

111 /// dump - Debugger convenience method; writes trace to standard error
112 /// output stream.
113 ///
114 void dump() const;
115};
116
117} // end namespace llvm
118
119#endif // TRACE_H
119#endif // LLVM_ANALYSIS_TRACE_H