mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-27 06:44:59 -04:00
Runtime.PPCEABI.H all match
This commit is contained in:
@@ -6,9 +6,11 @@ inline static void InitDefaultHeap() {
|
||||
void* arenaLo;
|
||||
void* arenaHi;
|
||||
|
||||
/* NONMATCH: OSReport strings should be two separate rodata entries with padding */
|
||||
OSReport("GCN_Mem_Alloc.c : InitDefaultHeap. No Heap Available\n");
|
||||
OSReport("Metrowerks CW runtime library initializing default heap\n");
|
||||
// This is to force the two strings be two separate rodata entries with padding instead of a single stringbase.
|
||||
static const char dummy1[] = "GCN_Mem_Alloc.c : InitDefaultHeap. No Heap Available\n";
|
||||
static const char dummy2[] = "Metrowerks CW runtime library initializing default heap\n";
|
||||
OSReport(dummy1);
|
||||
OSReport(dummy2);
|
||||
|
||||
arenaLo = OSGetArenaLo();
|
||||
arenaHi = OSGetArenaHi();
|
||||
|
||||
Reference in New Issue
Block a user