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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

Issue 1376233011: Partially revert r26703 and omit regular code generation for implicit accessors. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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: runtime/vm/flow_graph_compiler_ia32.cc
diff --git a/runtime/vm/flow_graph_compiler_ia32.cc b/runtime/vm/flow_graph_compiler_ia32.cc
index 2c7b3353684aa2703dcde1aa8f294c78153a4184..d0b020a7a532d820a3d821de43d55ff59c887ed7 100644
--- a/runtime/vm/flow_graph_compiler_ia32.cc
+++ b/runtime/vm/flow_graph_compiler_ia32.cc
@@ -1030,7 +1030,10 @@ void FlowGraphCompiler::EmitFrameEntry() {
void FlowGraphCompiler::CompileGraph() {
InitCompiler();
- TryIntrinsify();
+ if (TryIntrinsify()) {
+ // Intrinsic has no fall through.
+ return;
+ }
EmitFrameEntry();

Powered by Google App Engine
This is Rietveld 408576698