From 087a853609bcc784c7ab1a5d0eb6a15d430576be Mon Sep 17 00:00:00 2001 From: "danno@chromium.org" Date: Wed, 3 Apr 2013 11:44:03 +0000 Subject: [PATCH] Fix hydrogen tracing on x64 and ARM R=yangguo@chromium.org Review URL: https://codereview.chromium.org/13461020 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14122 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/arm/lithium-arm.h | 2 +- src/x64/lithium-x64.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h index f49e8ce..e393c0e 100644 --- a/src/arm/lithium-arm.h +++ b/src/arm/lithium-arm.h @@ -2114,7 +2114,7 @@ class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> { }; -class LTransitionElementsKind: public LTemplateInstruction<1, 1, 2> { +class LTransitionElementsKind: public LTemplateInstruction<0, 1, 2> { public: LTransitionElementsKind(LOperand* object, LOperand* new_map_temp, diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h index 9e3e836..c4f6d84 100644 --- a/src/x64/lithium-x64.h +++ b/src/x64/lithium-x64.h @@ -2034,7 +2034,7 @@ class LStoreKeyedGeneric: public LTemplateInstruction<0, 3, 0> { }; -class LTransitionElementsKind: public LTemplateInstruction<1, 1, 2> { +class LTransitionElementsKind: public LTemplateInstruction<0, 1, 2> { public: LTransitionElementsKind(LOperand* object, LOperand* new_map_temp, -- 2.7.4