diff options
author | Stephane Carrez <stcarrez@nerim.fr> | 2003-09-06 20:43:05 +0000 |
---|---|---|
committer | Stephane Carrez <stcarrez@nerim.fr> | 2003-09-06 20:43:05 +0000 |
commit | 12a995866da33cb941712228084d76b386d2a803 (patch) | |
tree | 5569da844a3c7ffdadb017685e8a00618f85bace /gas/config | |
parent | cc1b3dc7b25b1a7364f7b4a64387956f3dd1319c (diff) | |
download | gdb-12a995866da33cb941712228084d76b386d2a803.zip gdb-12a995866da33cb941712228084d76b386d2a803.tar.gz gdb-12a995866da33cb941712228084d76b386d2a803.tar.bz2 |
PR savannah/4358:
* config/tc-m68hc11.c (s_m68hc11_relax): Use 2 for size to avoid
overflow complain.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-m68hc11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-m68hc11.c b/gas/config/tc-m68hc11.c index 3740419..db6d5c1 100644 --- a/gas/config/tc-m68hc11.c +++ b/gas/config/tc-m68hc11.c @@ -2734,7 +2734,7 @@ s_m68hc11_relax (ignore) return; } - fix_new_exp (frag_now, frag_now_fix (), 1, &ex, 1, + fix_new_exp (frag_now, frag_now_fix (), 2, &ex, 1, BFD_RELOC_M68HC11_RL_GROUP); demand_empty_rest_of_line (); |