summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/powerpc
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2008-03-01 01:34:43 +0000
committer Couriersud <couriersud@users.noreply.github.com>2008-03-01 01:34:43 +0000
commit76847517a447114f2fcae6b89c52dc3486103189 (patch)
treed2691f7739b2261bc5d23ffc481d73e64de2eeb4 /src/emu/cpu/powerpc
parentc5a4ffe2914e83417c1c9e1b3e6d851546b92570 (diff)
Identified code not used and marked with "#ifdef UNUSED_FUNCTION"
Diffstat (limited to 'src/emu/cpu/powerpc')
-rw-r--r--src/emu/cpu/powerpc/ppc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/cpu/powerpc/ppc.c b/src/emu/cpu/powerpc/ppc.c
index 8c5df36b02f..ddc704661fd 100644
--- a/src/emu/cpu/powerpc/ppc.c
+++ b/src/emu/cpu/powerpc/ppc.c
@@ -817,10 +817,12 @@ INLINE UINT32 ppc_get_cr(void)
return CR(0) << 28 | CR(1) << 24 | CR(2) << 20 | CR(3) << 16 | CR(4) << 12 | CR(5) << 8 | CR(6) << 4 | CR(7);
}
+#ifdef UNUSED_FUNCTION
INLINE void ppc_exception(int exception_type)
{
longjmp(ppc.exception_jmpbuf, exception_type);
}
+#endif
/***********************************************************************/