From 294a0509cf811061b8009ade61e76a1f94e248b2 Mon Sep 17 00:00:00 2001 From: David Brazdil Date: Fri, 15 May 2015 16:44:05 +0100 Subject: ART: Revert change to LiveRange::Dump Changes back the LiveRange printing format to "[start,end)" for better clarity. However, it removes the space after comma due to b/1189305 and prints the "ranges" attribute with curly brackets to improve readability. Bug: 21189305 Change-Id: Ic83025fa78d6f1edb5e0e39d66160182b0198ab8 --- compiler/optimizing/ssa_liveness_analysis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/optimizing/ssa_liveness_analysis.h') diff --git a/compiler/optimizing/ssa_liveness_analysis.h b/compiler/optimizing/ssa_liveness_analysis.h index ce4bbd4fc7..4b19c5b46a 100644 --- a/compiler/optimizing/ssa_liveness_analysis.h +++ b/compiler/optimizing/ssa_liveness_analysis.h @@ -76,7 +76,7 @@ class LiveRange FINAL : public ArenaObject { } void Dump(std::ostream& stream) const { - stream << start_ << "-" << end_; + stream << "[" << start_ << "," << end_ << ")"; } LiveRange* Dup(ArenaAllocator* allocator) const { -- cgit v1.2.3-59-g8ed1b