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

Unified Diff: runtime/vm/flow_graph_inliner.cc

Issue 15946002: Allow breakpoints on strict equal (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 7 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: runtime/vm/flow_graph_inliner.cc
===================================================================
--- runtime/vm/flow_graph_inliner.cc (revision 23094)
+++ runtime/vm/flow_graph_inliner.cc (working copy)
@@ -1147,7 +1147,8 @@
cid_constant->set_ssa_temp_index(
owner_->caller_graph()->alloc_ssa_temp_index());
StrictCompareInstr* compare =
- new StrictCompareInstr(Token::kEQ_STRICT,
+ new StrictCompareInstr(call_->instance_call()->token_pos(),
+ Token::kEQ_STRICT,
new Value(load_cid),
new Value(cid_constant));
BranchInstr* branch = new BranchInstr(compare);

Powered by Google App Engine
This is Rietveld 408576698