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

Unified Diff: src/a64/lithium-a64.h

Issue 153773002: A64: Synchronize with r16679. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 years, 10 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/a64/ic-a64.cc ('k') | src/a64/macro-assembler-a64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/lithium-a64.h
diff --git a/src/a64/lithium-a64.h b/src/a64/lithium-a64.h
index 45246425631386566603ac708e72a3f7e5ea3d50..d8f3d25fda7807c6554205727e3e5f3822fd218a 100644
--- a/src/a64/lithium-a64.h
+++ b/src/a64/lithium-a64.h
@@ -1694,7 +1694,7 @@ class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 1, 0> {
template<int T>
-class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, T> {
+class LLoadKeyed : public LTemplateInstruction<1, 2, T> {
public:
LLoadKeyed(LOperand* elements, LOperand* key) {
this->inputs_[0] = elements;
@@ -1808,7 +1808,7 @@ class LMapEnumLength V8_FINAL : public LTemplateInstruction<1, 1, 0> {
template<int T>
-class LUnaryMathOperation V8_FINAL : public LTemplateInstruction<1, 1, T> {
+class LUnaryMathOperation : public LTemplateInstruction<1, 1, T> {
public:
explicit LUnaryMathOperation(LOperand* value) {
this->inputs_[0] = value;
@@ -2224,7 +2224,7 @@ class LStackCheck V8_FINAL : public LTemplateInstruction<0, 0, 0> {
template<int T>
-class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, T> {
+class LStoreKeyed : public LTemplateInstruction<0, 3, T> {
public:
LStoreKeyed(LOperand* elements, LOperand* key, LOperand* value) {
this->inputs_[0] = elements;
« no previous file with comments | « src/a64/ic-a64.cc ('k') | src/a64/macro-assembler-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698