commit | c74652867cd9293e86232324e5e057cd73c48e74 | [log] [tgz] |
---|---|---|
author | David Brazdil <dbrazdil@google.com> | Wed May 13 17:50:09 2015 +0100 |
committer | David Brazdil <dbrazdil@google.com> | Fri May 15 14:04:08 2015 +0100 |
tree | 2670fa4ee6ff86e7c7a6d7ffa07f7a58df45dfb5 | |
parent | 70d3d1433ee3d33dfdc9f687c94383d527871455 [diff] [blame] |
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
diff --git a/compiler/optimizing/ssa_liveness_analysis.h b/compiler/optimizing/ssa_liveness_analysis.h index 82c5454..bd55e9f 100644 --- a/compiler/optimizing/ssa_liveness_analysis.h +++ b/compiler/optimizing/ssa_liveness_analysis.h
@@ -76,7 +76,7 @@ } void Dump(std::ostream& stream) const { - stream << "[" << start_ << ", " << end_ << ")"; + stream << start_ << "-" << end_; } LiveRange* Dup(ArenaAllocator* allocator) const {