summaryrefslogtreecommitdiffstats
path: root/compiler/sea_ir
diff options
context:
space:
mode:
authorDragos Sbirlea <dragoss@google.com>2013-07-29 16:49:56 -0700
committerDragos Sbirlea <dragoss@google.com>2013-07-29 18:09:40 -0700
commitb4dcf65f1918c869bf47f483a6a7cecd9ba1dfca (patch)
treecd1a235a408a4b2bf3d20bb307e3ae47d6d47f10 /compiler/sea_ir
parentf32a3a25b0eee3f7ef1af9c6e3ec7b5b71df8df6 (diff)
downloadart-b4dcf65f1918c869bf47f483a6a7cecd9ba1dfca.zip
art-b4dcf65f1918c869bf47f483a6a7cecd9ba1dfca.tar.gz
art-b4dcf65f1918c869bf47f483a6a7cecd9ba1dfca.tar.bz2
Fix build. (whitespace issues)
Change-Id: I8453933a7ad4a5f2adcb29a9c746be843a743846
Diffstat (limited to 'compiler/sea_ir')
-rw-r--r--compiler/sea_ir/sea.cc4
-rw-r--r--compiler/sea_ir/sea.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/compiler/sea_ir/sea.cc b/compiler/sea_ir/sea.cc
index 9056935..99b21f8 100644
--- a/compiler/sea_ir/sea.cc
+++ b/compiler/sea_ir/sea.cc
@@ -705,8 +705,8 @@ void InstructionNode::ToDotSSAEdges(std::string& result) const {
// SSA used-by:
if (DotConversion::SaveUseEdges()) {
- for (std::vector<InstructionNode*>::const_iterator cit = used_in_.begin(); cit != used_in_.end();
- cit++) {
+ for (std::vector<InstructionNode*>::const_iterator cit = used_in_.begin();
+ cit != used_in_.end(); cit++) {
result += (*cit)->StringId() + " -> " + StringId() + "[color=gray,label=\"";
result += "\"] ; // SSA used-by edge\n";
}
diff --git a/compiler/sea_ir/sea.h b/compiler/sea_ir/sea.h
index 040ad8a..5cb8424 100644
--- a/compiler/sea_ir/sea.h
+++ b/compiler/sea_ir/sea.h
@@ -43,7 +43,7 @@ class DotConversion {
}
private:
- static const bool save_use_edges_ = false; // TODO: Enable per-sea graph configuration.
+ static const bool save_use_edges_ = false; // TODO: Enable per-sea graph configuration.
};
class Region;