From 3d995bcc5a3e2fa52786757bb3a36614187612b5 Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 11 Oct 2017 17:43:46 -0400 Subject: sh4fe: Don't inline virtual functions (nw) --- src/devices/cpu/sh/sh4fe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/sh/sh4fe.cpp b/src/devices/cpu/sh/sh4fe.cpp index e97d22a5369..9c8f7b77248 100644 --- a/src/devices/cpu/sh/sh4fe.cpp +++ b/src/devices/cpu/sh/sh4fe.cpp @@ -23,7 +23,7 @@ sh4_frontend::sh4_frontend(sh_common_execution *device, uint32_t window_start, u { } -inline uint16_t sh4_frontend::read_word(opcode_desc &desc) +uint16_t sh4_frontend::read_word(opcode_desc &desc) { if (desc.physpc >= 0xe0000000) return m_sh->m_direct->read_word(desc.physpc, SH34LE_CODE_XOR(0)); @@ -31,7 +31,7 @@ inline uint16_t sh4_frontend::read_word(opcode_desc &desc) return m_sh->m_direct->read_word(desc.physpc & SH34_AM, SH34LE_CODE_XOR(0)); } -inline uint16_t sh4be_frontend::read_word(opcode_desc &desc) +uint16_t sh4be_frontend::read_word(opcode_desc &desc) { if (desc.physpc >= 0xe0000000) return m_sh->m_direct->read_word(desc.physpc, SH34BE_CODE_XOR(0)); -- cgit v1.2.3