diff --git a/gas/ChangeLog b/gas/ChangeLog index 0a08ce9465..17226e776b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,7 @@ +2006-10-27 Andrew Stubbs + + * config/tc-sh.c (md_assemble): Define size of branches. + 2006-10-26 Ben Elliston * dw2gencfi.c (cfi_add_CFA_offset): diff --git a/gas/config/tc-sh.c b/gas/config/tc-sh.c index 1abbaad09f..3d1ae79d76 100644 --- a/gas/config/tc-sh.c +++ b/gas/config/tc-sh.c @@ -2865,6 +2865,9 @@ md_assemble (char *str) as_bad (_("Delayed branches not available on SH1")); parse_exp (op_end + 1, &operand[0]); build_relax (opcode, &operand[0]); + + /* All branches are currently 16 bit. */ + size = 2; } else {