From e0412e382bc21ddb16a271ca167d0a190ba4c2f8 Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Thu, 31 Jul 2014 08:40:09 +0000 Subject: [PATCH] Fix typos in LMathFround declarations. R=svenpanne@chromium.org Review URL: https://codereview.chromium.org/425243002 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22738 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/arm/lithium-arm.h | 2 +- src/mips/lithium-mips.h | 2 +- src/x64/lithium-x64.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h index 37303933ec..ce2225635b 100644 --- a/src/arm/lithium-arm.h +++ b/src/arm/lithium-arm.h @@ -886,7 +886,7 @@ class LMathFround V8_FINAL : public LTemplateInstruction<1, 1, 0> { LOperand* value() { return inputs_[0]; } - DECLARE_CONCRETE_INSTRUCTION(MathRound, "math-fround") + DECLARE_CONCRETE_INSTRUCTION(MathFround, "math-fround") }; diff --git a/src/mips/lithium-mips.h b/src/mips/lithium-mips.h index 101d9c2058..68e25dcdb1 100644 --- a/src/mips/lithium-mips.h +++ b/src/mips/lithium-mips.h @@ -862,7 +862,7 @@ class LMathFround V8_FINAL : public LTemplateInstruction<1, 1, 0> { LOperand* value() { return inputs_[0]; } - DECLARE_CONCRETE_INSTRUCTION(MathRound, "math-fround") + DECLARE_CONCRETE_INSTRUCTION(MathFround, "math-fround") }; diff --git a/src/x64/lithium-x64.h b/src/x64/lithium-x64.h index 69d02c0063..333080bc98 100644 --- a/src/x64/lithium-x64.h +++ b/src/x64/lithium-x64.h @@ -871,7 +871,7 @@ class LMathFround V8_FINAL : public LTemplateInstruction<1, 1, 0> { LOperand* value() { return inputs_[0]; } - DECLARE_CONCRETE_INSTRUCTION(MathRound, "math-fround") + DECLARE_CONCRETE_INSTRUCTION(MathFround, "math-fround") };