Revision: 15307
Author:   [email protected]
Date:     Tue Jun 25 00:58:37 2013
Log:      Merged r15303 into 3.18 branch.

MIPS: Fix Kraken gaussian blur test regression.

[email protected]
BUG=

Review URL: https://codereview.chromium.org/17569018
http://code.google.com/p/v8/source/detail?r=15307

Modified:
 /branches/3.18/src/mips/lithium-codegen-mips.cc
 /branches/3.18/src/version.cc

=======================================
--- /branches/3.18/src/mips/lithium-codegen-mips.cc     Tue Apr 30 09:36:45 2013
+++ /branches/3.18/src/mips/lithium-codegen-mips.cc     Tue Jun 25 00:58:37 2013
@@ -3479,6 +3479,7 @@
   Label done;
   __ Branch(USE_DELAY_SLOT, &done, ge, input, Operand(zero_reg));
   __ mov(result, input);
+  __ subu(result, zero_reg, input);
   // Overflow if result is still negative, i.e. 0x80000000.
   DeoptimizeIf(lt, instr->environment(), result, Operand(zero_reg));
   __ bind(&done);
=======================================
--- /branches/3.18/src/version.cc       Tue May 28 01:20:52 2013
+++ /branches/3.18/src/version.cc       Tue Jun 25 00:58:37 2013
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     18
 #define BUILD_NUMBER      5
-#define PATCH_LEVEL       8
+#define PATCH_LEVEL       9
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to