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

Unified Diff: src/compiler/linkage.cc

Issue 447443002: Fix ARM64 port after r22876. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 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 | « src/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/x64/linkage-x64.cc » ('j') | 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 ce88a0695699a212ab0aa8234d55195114b8f7cf..466f65c8ba8397552c82e7da14c648ab811847d5 100644
--- a/src/compiler/linkage.cc
+++ b/src/compiler/linkage.cc
@@ -105,7 +105,7 @@ CallDescriptor* Linkage::GetRuntimeCallDescriptor(
//==============================================================================
// Provide unimplemented methods on unsupported architectures, to at least link.
//==============================================================================
-#if !V8_TURBOFAN_TARGET
+#if !V8_TURBOFAN_BACKEND
CallDescriptor* Linkage::GetJSCallDescriptor(int parameter_count, Zone* zone) {
UNIMPLEMENTED();
return NULL;
@@ -134,7 +134,7 @@ CallDescriptor* Linkage::GetSimplifiedCDescriptor(
UNIMPLEMENTED();
return NULL;
}
-#endif // !V8_TURBOFAN_TARGET
+#endif // !V8_TURBOFAN_BACKEND
}
}
} // namespace v8::internal::compiler
« no previous file with comments | « src/compiler/arm64/linkage-arm64.cc ('k') | src/compiler/x64/linkage-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698