diff options
Diffstat (limited to 'target-m68k/op.c')
-rw-r--r-- | target-m68k/op.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target-m68k/op.c b/target-m68k/op.c index 489eafeef6..8ea7589c3f 100644 --- a/target-m68k/op.c +++ b/target-m68k/op.c @@ -412,7 +412,10 @@ OP(divu) quot = num / den; rem = num % den; flags = 0; - if (PARAM1 && quot > 0xffff) + /* Avoid using a PARAM1 of zero. This breaks dyngen because it uses + the address of a symbol, and gcc knows symbols can't have address + zero. */ + if (PARAM1 == 2 && quot > 0xffff) flags |= CCF_V; if (quot == 0) flags |= CCF_Z; @@ -439,7 +442,7 @@ OP(divs) quot = num / den; rem = num % den; flags = 0; - if (PARAM1 && quot != (int16_t)quot) + if (PARAM1 == 2 && quot != (int16_t)quot) flags |= CCF_V; if (quot == 0) flags |= CCF_Z; |