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/tms32031/tms32031.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/tms32031/tms32031.c')
-rw-r--r-- | src/emu/cpu/tms32031/tms32031.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/emu/cpu/tms32031/tms32031.c b/src/emu/cpu/tms32031/tms32031.c index 3ad69d45df9..b8406dd4155 100644 --- a/src/emu/cpu/tms32031/tms32031.c +++ b/src/emu/cpu/tms32031/tms32031.c @@ -502,7 +502,6 @@ void tms3203x_device::state_import(const device_state_entry &entry) default: fatalerror("CPU_IMPORT_STATE(tms3203x) called for unexpected value\n"); - break; } } @@ -529,7 +528,6 @@ void tms3203x_device::state_export(const device_state_entry &entry) default: fatalerror("CPU_IMPORT_STATE(tms3203x) called for unexpected value\n"); - break; } } |