Reviewers: Lasse Reichstein, Description: Landing http://codereview.chromium.org/339026
[email protected] Please review this at http://codereview.chromium.org/334044 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M test/cctest/test-api.cc 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)); } } } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
