diff options
author | Nick Clifton <nickc@redhat.com> | 2001-11-20 09:33:49 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-11-20 09:33:49 +0000 |
commit | a6567fe028018267ef5f68a3de470aef87bb9ee6 (patch) | |
tree | 72942d8c2db1b9c571ddee6b0594846d39da34d4 /gas/config/tc-avr.c | |
parent | f021c2a7b76064f7e5a291a8e2d28d8ab66f52cc (diff) | |
download | gdb-a6567fe028018267ef5f68a3de470aef87bb9ee6.zip gdb-a6567fe028018267ef5f68a3de470aef87bb9ee6.tar.gz gdb-a6567fe028018267ef5f68a3de470aef87bb9ee6.tar.bz2 |
Fix md_apply_fix3 typo.
Diffstat (limited to 'gas/config/tc-avr.c')
-rw-r--r-- | gas/config/tc-avr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-avr.c b/gas/config/tc-avr.c index 4fb15e3..0a85533 100644 --- a/gas/config/tc-avr.c +++ b/gas/config/tc-avr.c @@ -838,7 +838,7 @@ md_apply_fix3 (fixP, valP, seg) if (fixP->fx_addsy && (s == seg || s == absolute_section)) { - value = S_GET_VALUE (fixP->fx_addsy) + *valuep; + value += S_GET_VALUE (fixP->fx_addsy); fixP->fx_done = 1; } } |