target/m68k/op_helper: Adjust formatting to be in sync with qemu

This commit is contained in:
Lioncash 2018-03-12 12:26:53 -04:00
parent 6e9ecb876e
commit b92dd8d299
No known key found for this signature in database
GPG key ID: 4E3C3CC1031BA9C7
2 changed files with 1 additions and 3 deletions

View file

@ -30,7 +30,7 @@
*/ */
static const floatx80 fpu_rom[128] = { static const floatx80 fpu_rom[128] = {
make_floatx80_init(0x4000, 0xc90fdaa22168c235ULL), /* Pi */ make_floatx80_init(0x4000, 0xc90fdaa22168c235ULL), /* Pi */
{0, 0}, {0, 0}, {0, 0}, {0, 0},
{0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0},
{0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0}, {0, 0},

View file

@ -105,7 +105,6 @@ throwaway:
cpu_m68k_set_sr(env, sr); cpu_m68k_set_sr(env, sr);
} }
static const char *m68k_exception_name(int index) static const char *m68k_exception_name(int index)
{ {
switch (index) { switch (index) {
@ -210,7 +209,6 @@ static const char *m68k_exception_name(int index)
if (index >= 64 && index <= 255) { if (index >= 64 && index <= 255) {
return "User Defined Vector"; return "User Defined Vector";
} }
return "Unassigned"; return "Unassigned";
} }