Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(49)

Unified Diff: src/compiler/bytecode-graph-builder.cc

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed obsolete identifiers Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/compiler/bytecode-graph-builder.cc
diff --git a/src/compiler/bytecode-graph-builder.cc b/src/compiler/bytecode-graph-builder.cc
index 93a2971ed16837801609c32d5dbed6aee2bc28bd..d85157a2b373558ef3f9713391e5a04e85e730ae 100644
--- a/src/compiler/bytecode-graph-builder.cc
+++ b/src/compiler/bytecode-graph-builder.cc
@@ -2195,7 +2195,7 @@ void BytecodeGraphBuilder::UpdateCurrentSourcePosition(
if (it->done()) return;
if (it->code_offset() == offset) {
- source_positions_->set_current_position(it->source_position());
+ source_positions_->SetCurrentPosition(it->source_position());
it->Advance();
} else {
DCHECK_GT(it->code_offset(), offset);

Powered by Google App Engine
This is Rietveld 408576698