| Index: test/cctest/test-api.cc
|
| ===================================================================
|
| --- test/cctest/test-api.cc (revision 3146)
|
| +++ test/cctest/test-api.cc (working copy)
|
| @@ -8593,7 +8593,7 @@
|
| } else {
|
| uint64_t stored_bits = DoubleToBits(stored_number);
|
| // Check if quiet nan (bits 51..62 all set).
|
| - CHECK_EQ(0xfff, (stored_bits >> 51) & 0xfff);
|
| + CHECK_EQ(0xfff, static_cast<int>((stored_bits >> 51) & 0xfff));
|
| }
|
|
|
| // Check that Date::New preserves non-NaNs in the date range and
|
| @@ -8606,7 +8606,7 @@
|
| } else {
|
| uint64_t stored_bits = DoubleToBits(stored_date);
|
| // Check if quiet nan (bits 51..62 all set).
|
| - CHECK_EQ(0xfff, (stored_bits >> 51) & 0xfff);
|
| + CHECK_EQ(0xfff, static_cast<int>((stored_bits >> 51) & 0xfff));
|
| }
|
| }
|
| }
|
|
|