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

Unified Diff: runtime/vm/intermediate_language.cc

Issue 2894953002: Support inlining of calls where type arguments are passed to generic functions. (Closed)
Patch Set: work in progress Created 3 years, 6 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/intermediate_language.cc
diff --git a/runtime/vm/intermediate_language.cc b/runtime/vm/intermediate_language.cc
index 9db5af0f6200ebc24587140cb70c0304e61607cc..710f88bcca62d293f02514e549357a2b82bba389 100644
--- a/runtime/vm/intermediate_language.cc
+++ b/runtime/vm/intermediate_language.cc
@@ -3240,15 +3240,15 @@ void MaterializeObjectInstr::RemapRegisters(intptr_t* cpu_reg_slots,
}
-LocationSummary* CurrentContextInstr::MakeLocationSummary(Zone* zone,
- bool opt) const {
+LocationSummary* SpecialParameterInstr::MakeLocationSummary(Zone* zone,
+ bool opt) const {
// Only appears in initial definitions, never in normal code.
UNREACHABLE();
return NULL;
}
-void CurrentContextInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
+void SpecialParameterInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
// Only appears in initial definitions, never in normal code.
UNREACHABLE();
}

Powered by Google App Engine
This is Rietveld 408576698