Remove some dead data.

Clang doesn't like dead data, and this is just an LP32 compatibility turd.

Change-Id: I3832748a4e773b254877f4438b5340e7d4c1ce70
This commit is contained in:
Elliott Hughes 2014-07-07 09:46:11 -07:00
parent 1f262b35fe
commit 920d831ba1

View File

@ -137,17 +137,6 @@ static const int safe_years_low[SOLAR_CYCLE_LENGTH] = {
1992, 1993, 1994, 1995, 1992, 1993, 1994, 1995,
}; };
/* This isn't used, but it's handy to look at */
static const int dow_year_start[SOLAR_CYCLE_LENGTH] = {
5, 0, 1, 2, /* 0 2016 - 2019 */
3, 5, 6, 0, /* 4 */
1, 3, 4, 5, /* 8 1996 - 1998, 1971*/
6, 1, 2, 3, /* 12 1972 - 1975 */
4, 6, 0, 1, /* 16 */
2, 4, 5, 6, /* 20 2036, 2037, 2010, 2011 */
0, 2, 3, 4 /* 24 2012, 2013, 2014, 2015 */
};
/* Let's assume people are going to be looking for dates in the future. /* Let's assume people are going to be looking for dates in the future.
Let's provide some cheats so you can skip ahead. Let's provide some cheats so you can skip ahead.
This has a 4x speed boost when near 2008. This has a 4x speed boost when near 2008.