diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-10-18 17:24:07 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-10-18 17:24:07 -0400 |
| commit | c80fa3bba2c9d4c6dc46d53bb0bfe5daca24c2bf (patch) | |
| tree | 2ccb18de58c35fb85ed4e51ad586a29ad7446998 /src | |
| parent | b84d229c2f115dc5001b1c2942dc86f9b2417126 (diff) | |
Runtime.PPCEABI.H all match
Diffstat (limited to 'src')
| -rw-r--r-- | src/Runtime.PPCEABI.H/GCN_mem_alloc.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Runtime.PPCEABI.H/GCN_mem_alloc.c b/src/Runtime.PPCEABI.H/GCN_mem_alloc.c index 3e2628a0..b5f2e147 100644 --- a/src/Runtime.PPCEABI.H/GCN_mem_alloc.c +++ b/src/Runtime.PPCEABI.H/GCN_mem_alloc.c @@ -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(); |
