aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/LiveIntervalAnalysis.h11
-rw-r--r--include/llvm/CodeGen/LiveIntervals.h11
2 files changed, 4 insertions, 18 deletions
diff --git a/include/llvm/CodeGen/LiveIntervalAnalysis.h b/include/llvm/CodeGen/LiveIntervalAnalysis.h
index b2f0416..2be89fd 100644
--- a/include/llvm/CodeGen/LiveIntervalAnalysis.h
+++ b/include/llvm/CodeGen/LiveIntervalAnalysis.h
@@ -196,15 +196,8 @@ namespace llvm {
return lhs.reg == rhs.reg;
}
- inline std::ostream& operator<<(std::ostream& os,
- const LiveIntervals::Interval& li) {
- os << "%reg" << li.reg << " = ";
- for (LiveIntervals::Interval::Ranges::const_iterator
- i = li.ranges.begin(), e = li.ranges.end(); i != e; ++i) {
- os << "[" << i->first << ", " << i->second << "]";
- }
- return os;
- }
+ std::ostream& operator<<(std::ostream& os,
+ const LiveIntervals::Interval& li);
} // End llvm namespace
diff --git a/include/llvm/CodeGen/LiveIntervals.h b/include/llvm/CodeGen/LiveIntervals.h
index b2f0416..2be89fd 100644
--- a/include/llvm/CodeGen/LiveIntervals.h
+++ b/include/llvm/CodeGen/LiveIntervals.h
@@ -196,15 +196,8 @@ namespace llvm {
return lhs.reg == rhs.reg;
}
- inline std::ostream& operator<<(std::ostream& os,
- const LiveIntervals::Interval& li) {
- os << "%reg" << li.reg << " = ";
- for (LiveIntervals::Interval::Ranges::const_iterator
- i = li.ranges.begin(), e = li.ranges.end(); i != e; ++i) {
- os << "[" << i->first << ", " << i->second << "]";
- }
- return os;
- }
+ std::ostream& operator<<(std::ostream& os,
+ const LiveIntervals::Interval& li);
} // End llvm namespace