diff options
author | 2015-05-13 17:50:09 +0100 | |
---|---|---|
committer | 2015-05-15 14:04:08 +0100 | |
commit | c74652867cd9293e86232324e5e057cd73c48e74 (patch) | |
tree | 2670fa4ee6ff86e7c7a6d7ffa07f7a58df45dfb5 /compiler/optimizing/ssa_liveness_analysis.h | |
parent | 70d3d1433ee3d33dfdc9f687c94383d527871455 (diff) |
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
Diffstat (limited to 'compiler/optimizing/ssa_liveness_analysis.h')
-rw-r--r-- | compiler/optimizing/ssa_liveness_analysis.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<kArenaAllocMisc> { } void Dump(std::ostream& stream) const { - stream << "[" << start_ << ", " << end_ << ")"; + stream << start_ << "-" << end_; } LiveRange* Dup(ArenaAllocator* allocator) const { |