forked from len0rd/rockbox
Don't filter out -O for sims.
It's not useful as it means we test code at a different -O level than we run it at. Fixes build errors caused by gcc 4.3. Fix some warnings the change would introduce as well. Change-Id: Id9ff31dc08694b0bfc5272f5e690c41f7918ed22
This commit is contained in:
parent
9f4ee79542
commit
74c8746595
4 changed files with 10 additions and 12 deletions
|
@ -248,7 +248,7 @@ void Z_Init(void)
|
|||
|
||||
zonebase_size=size;
|
||||
|
||||
printf("Z_Init: Allocated %uldKb zone memory\n", (long unsigned)(size >> 10));
|
||||
printf("Z_Init: Allocated %luKb zone memory\n", (long unsigned)(size >> 10));
|
||||
|
||||
// Align on cache boundary
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue