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

Unified Diff: src/compiler/linkage.cc

Issue 848873002: Fix the compilation error for turbofan unsupported platform. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/linkage.cc
diff --git a/src/compiler/linkage.cc b/src/compiler/linkage.cc
index f76bc6079025b9d4185b2cb33eb2e86fefefa32a..4b301f512f9afc5737d59676fb640c7c0c96bcbe 100644
--- a/src/compiler/linkage.cc
+++ b/src/compiler/linkage.cc
@@ -232,6 +232,12 @@ CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone,
}
+LinkageLocation Linkage::GetOsrValueLocation(int index) const {
+ UNIMPLEMENTED();
+ return LinkageLocation(-1); // Dummy value
+}
+
+
CallDescriptor* Linkage::GetRuntimeCallDescriptor(
Runtime::FunctionId function, int parameter_count,
Operator::Properties properties, Zone* zone) {
« 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