Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Unified Diff: src/runtime.cc

Issue 1132002: Add parens to DateYMDFromTimeSlow to clearify. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/runtime.cc
===================================================================
--- src/runtime.cc (revision 4186)
+++ src/runtime.cc (working copy)
@@ -5731,11 +5731,11 @@
bool is_leap = (!yd1 || yd2) && !yd3;
ASSERT(date >= -1);
- ASSERT(is_leap || date >= 0);
- ASSERT(date < 365 || is_leap && date < 366);
- ASSERT(is_leap == (year % 4 == 0 && (year % 100 || (year % 400 == 0))));
- ASSERT(is_leap || MakeDay(year, 0, 1) + date == save_date);
- ASSERT(!is_leap || MakeDay(year, 0, 1) + date + 1 == save_date);
+ ASSERT(is_leap || (date >= 0));
+ ASSERT((date < 365) || (is_leap && (date < 366)));
+ ASSERT(is_leap == ((year % 4 == 0) && (year % 100 || (year % 400 == 0))));
+ ASSERT(is_leap || ((MakeDay(year, 0, 1) + date) == save_date));
+ ASSERT(!is_leap || ((MakeDay(year, 0, 1) + date + 1) == save_date));
if (is_leap) {
day = kDayInYear[2*365 + 1 + date];
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698