Revision: 13338
Author:   [email protected]
Date:     Wed Jan  9 01:40:00 2013
Log:      MIPS: Fix typo in commit r13326 (f8c9bf84).

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/11824015
Patch from Akos Palfi <[email protected]>.
http://code.google.com/p/v8/source/detail?r=13338

Modified:
 /branches/bleeding_edge/src/mips/constants-mips.h

=======================================
--- /branches/bleeding_edge/src/mips/constants-mips.h Mon Jan 7 07:02:56 2013 +++ /branches/bleeding_edge/src/mips/constants-mips.h Wed Jan 9 01:40:00 2013
@@ -99,7 +99,7 @@
// FPU (coprocessor 1) control registers. Currently only FCSR is implemented.
 const int kFCSRRegister = 31;
 const int kInvalidFPUControlRegister = -1;
-const uint32_t kFPUInvalidResult = static_cast<uint32_t>(1) << 31 - 1;
+const uint32_t kFPUInvalidResult = static_cast<uint32_t>(1 << 31) - 1;

 // FCSR constants.
 const uint32_t kFCSRInexactFlagBit = 2;

--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to