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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 1153963002: Remove value check from ICData checks/house-keeping (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: C Created 5 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
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.cc
diff --git a/runtime/vm/flow_graph_compiler.cc b/runtime/vm/flow_graph_compiler.cc
index ae31c415a40a9e13c5b5fd7f7be16c903418a41b..5826a58885f0d3ea45a0ce81cf4d057e5ffec3c1 100644
--- a/runtime/vm/flow_graph_compiler.cc
+++ b/runtime/vm/flow_graph_compiler.cc
@@ -1037,10 +1037,6 @@ void FlowGraphCompiler::GenerateInstanceCall(
case 2:
label_address = stub_code->TwoArgsOptimizedCheckInlineCacheEntryPoint();
break;
- case 3:
- label_address =
- stub_code->ThreeArgsOptimizedCheckInlineCacheEntryPoint();
- break;
default:
UNIMPLEMENTED();
}
@@ -1068,9 +1064,6 @@ void FlowGraphCompiler::GenerateInstanceCall(
case 2:
label_address = stub_code->TwoArgsCheckInlineCacheEntryPoint();
break;
- case 3:
- label_address = stub_code->ThreeArgsCheckInlineCacheEntryPoint();
- break;
default:
UNIMPLEMENTED();
}
« no previous file with comments | « runtime/vm/flow_graph_builder.cc ('k') | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698