From 051a196723970b0c609684703b7e5917afd5efec Mon Sep 17 00:00:00 2001 From: "bmeurer@chromium.org" Date: Wed, 14 Aug 2013 14:50:15 +0000 Subject: [PATCH] Revert "Drop broken and unnecessary RequiredInputRepresentation() in HMathFloorOfDiv." This reverts r16190. TBR=danno@chromium.org Review URL: https://codereview.chromium.org/23188003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@16191 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/hydrogen-instructions.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/hydrogen-instructions.h b/src/hydrogen-instructions.h index 3d43c88..7eae85b 100644 --- a/src/hydrogen-instructions.h +++ b/src/hydrogen-instructions.h @@ -3841,6 +3841,10 @@ class HMathFloorOfDiv: public HBinaryOperation { virtual HValue* EnsureAndPropagateNotMinusZero(BitVector* visited); + virtual Representation RequiredInputRepresentation(int index) { + return Representation::Integer32(); + } + DECLARE_CONCRETE_INSTRUCTION(MathFloorOfDiv) protected: -- 2.7.4