summaryrefslogtreecommitdiffstats
path: root/compiler/sea_ir/frontend.cc
diff options
context:
space:
mode:
authorDragos Sbirlea <dragoss@google.com>2013-08-07 14:41:55 -0700
committerDragos Sbirlea <dragoss@google.com>2013-08-07 14:42:56 -0700
commita3519a48b94abfaf6571f5e9bbbe943e0fc314c2 (patch)
tree057162b843871df11f66c8507fcdbe85f79caf4a /compiler/sea_ir/frontend.cc
parentbfaf44fa3366955a2bacb2c38c79b53df2434582 (diff)
downloadart-a3519a48b94abfaf6571f5e9bbbe943e0fc314c2.zip
art-a3519a48b94abfaf6571f5e9bbbe943e0fc314c2.tar.gz
art-a3519a48b94abfaf6571f5e9bbbe943e0fc314c2.tar.bz2
Renamed SeaGraph::GetCurrentGraph to GetGraph for clarity.
Change-Id: Iffd51660fd7ac01a1458375cea6c2ed8b44ffaaf
Diffstat (limited to 'compiler/sea_ir/frontend.cc')
-rw-r--r--compiler/sea_ir/frontend.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/sea_ir/frontend.cc b/compiler/sea_ir/frontend.cc
index 87ef901..e24d07d 100644
--- a/compiler/sea_ir/frontend.cc
+++ b/compiler/sea_ir/frontend.cc
@@ -43,7 +43,7 @@ static CompiledMethod* CompileMethodWithSeaIr(CompilerDriver& compiler,
// NOTE: Instead of keeping the convention from the Dalvik frontend.cc
// and silencing the cpplint.py warning, I just corrected the formatting.
VLOG(compiler) << "Compiling " << PrettyMethod(method_idx, dex_file) << "...";
- sea_ir::SeaGraph* ir_graph = sea_ir::SeaGraph::GetCurrentGraph(dex_file);
+ sea_ir::SeaGraph* ir_graph = sea_ir::SeaGraph::GetGraph(dex_file);
ir_graph->CompileMethod(code_item, class_def_idx, method_idx, method_access_flags, dex_file);
sea_ir::DotConversion dc;
SafeMap<int, const sea_ir::Type*>* types = ir_graph->ti_->GetTypeMap();