We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5b7b17 commit 45ac260Copy full SHA for 45ac260
2 files changed
src/mips/common/crt0/cxxglue.c
@@ -230,3 +230,7 @@ __attribute__((weak)) void __cxa_guard_release(uint32_t* guardObject) {
230
guardObject[1] = 0;
231
atomic_signal_fence(memory_order_release);
232
}
233
+
234
+__attribute__((weak)) void _ZSt24__throw_out_of_range_fmtPKcz(const char* format, ...) {
235
+ abort();
236
+}
src/mips/tests/psyqo/psyqo-tests.cpp
@@ -24,10 +24,6 @@ SOFTWARE.
24
25
*/
26
27
-// PSYQo unit test suite using snitch.
28
-// Runs on the PlayStation 1 via pcsx-redux.
29
-// Output goes through the BIOS TTY (captured by --stdout).
30
-
31
#include "common/hardware/pcsxhw.h"
32
#include "common/syscalls/syscalls.h"
33
0 commit comments