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

Unified Diff: runtime/vm/flow_graph_compiler_ia32.cc

Issue 2511513003: Fix ia32 build: there are no patchable calls on ia32 (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 07678159e6a1ec49f27dcdd0bf8a080349cff9b2..d2ee67e74584ef18dee9bd776b13a5a952956265 100644
--- a/runtime/vm/flow_graph_compiler_ia32.cc
+++ b/runtime/vm/flow_graph_compiler_ia32.cc
@@ -1100,9 +1100,8 @@ void FlowGraphCompiler::GeneratePatchableCall(TokenPosition token_pos,
const StubEntry& stub_entry,
RawPcDescriptors::Kind kind,
LocationSummary* locs) {
Florian Schneider 2016/11/16 20:37:03 I'd rather remove this method, and replace the cal
kustermann 2016/11/16 20:45:32 I can do that - though it's slightly weired since
Florian Schneider 2016/11/16 20:50:13 We do that already in many places. Sometimes we ma
- __ CallPatchable(stub_entry);
- AddCurrentDescriptor(kind, Thread::kNoDeoptId, token_pos);
- RecordSafepoint(locs);
+ // No patchable calls on ia32.
+ GenerateCall(token_pos, stub_entry, kind, locs);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698