From c74652867cd9293e86232324e5e057cd73c48e74 Mon Sep 17 00:00:00 2001 From: David Brazdil Date: Wed, 13 May 2015 17:50:09 +0100 Subject: ART: Refactor GraphVisualizer attribute printing This patch unifies the way GraphVisualizer prints instruction attributes in preparation of changes to the Checker syntax. Change-Id: I44e91e36c660985ddfe039a9f410fedc48b496ec --- 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 82c5454bb0..bd55e9fc7f 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