diff options
author | 2014-09-08 12:00:45 +0000 | |
---|---|---|
committer | 2014-09-08 12:00:45 +0000 | |
commit | 3568cf772fd4109cf437531aeda7b384cc3af786 (patch) | |
tree | eb17d8fae8ef89d0f5dffc3afabfbb0018f766bb /src/emu/cpu/uml.c | |
parent | ad0cdb4ad20c67092de0412b768a6e2f52f19ff9 (diff) |
fixed most of the -Wunreachable-code-break and -Wunreachable-code-return warnings of clang 3.5 when compiling MESS (nw)
Diffstat (limited to 'src/emu/cpu/uml.c')
-rw-r--r-- | src/emu/cpu/uml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/uml.c b/src/emu/cpu/uml.c index f1bb8a125f3..33147b912dd 100644 --- a/src/emu/cpu/uml.c +++ b/src/emu/cpu/uml.c @@ -466,7 +466,7 @@ void uml::instruction::simplify() case SIZE_WORD: convert_to_mov_immediate((INT16)m_param[1].immediate()); break; case SIZE_DWORD: convert_to_mov_immediate((INT32)m_param[1].immediate()); break; case SIZE_QWORD: convert_to_mov_immediate((INT64)m_param[1].immediate()); break; - case SIZE_DQWORD: fatalerror("Invalid SEXT target size\n"); break; + case SIZE_DQWORD: fatalerror("Invalid SEXT target size\n"); } break; |