Index: runtime/vm/flow_graph_compiler.h |
diff --git a/runtime/vm/flow_graph_compiler.h b/runtime/vm/flow_graph_compiler.h |
index 6ecf04e19af84d405302e995aab7589454e7cf7b..536720e2ac7c4059318294e362ff030df763ae9a 100644 |
--- a/runtime/vm/flow_graph_compiler.h |
+++ b/runtime/vm/flow_graph_compiler.h |
@@ -337,13 +337,13 @@ class FlowGraphCompiler : public ValueObject { |
LocationSummary* locs); |
void GenerateCall(intptr_t token_pos, |
- const ExternalLabel* label, |
+ const StubEntry& stub_entry, |
RawPcDescriptors::Kind kind, |
LocationSummary* locs); |
void GenerateDartCall(intptr_t deopt_id, |
intptr_t token_pos, |
- const ExternalLabel* label, |
+ const StubEntry& stub_entry, |
RawPcDescriptors::Kind kind, |
LocationSummary* locs); |
@@ -393,14 +393,14 @@ class FlowGraphCompiler : public ValueObject { |
static int32_t EdgeCounterIncrementSizeInBytes(); |
#endif // !TARGET_ARCH_ARM64 && !TARGET_ARCH_MIPS |
- void EmitOptimizedInstanceCall(ExternalLabel* target_label, |
+ void EmitOptimizedInstanceCall(const StubEntry& stub_entry, |
const ICData& ic_data, |
intptr_t argument_count, |
intptr_t deopt_id, |
intptr_t token_pos, |
LocationSummary* locs); |
- void EmitInstanceCall(ExternalLabel* target_label, |
+ void EmitInstanceCall(const StubEntry& stub_entry, |
const ICData& ic_data, |
intptr_t argument_count, |
intptr_t deopt_id, |