diff options
author | Alan Modra <amodra@gmail.com> | 2001-05-10 11:32:52 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-05-10 11:32:52 +0000 |
commit | 606ab118baddd89493a504f6622c944562cc6bc5 (patch) | |
tree | b2b4ea0ee8f6cdf520d6f71864772d313250a5cf /gas/config/tc-fr30.c | |
parent | dab11f21ed899714eaec586add22deacb8f3ade6 (diff) | |
download | ppe42-binutils-606ab118baddd89493a504f6622c944562cc6bc5.tar.gz ppe42-binutils-606ab118baddd89493a504f6622c944562cc6bc5.zip |
Fix more fallout from multi-pass relaxation patch.
Diffstat (limited to 'gas/config/tc-fr30.c')
-rw-r--r-- | gas/config/tc-fr30.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gas/config/tc-fr30.c b/gas/config/tc-fr30.c index d2cffc7b31..1acebb8928 100644 --- a/gas/config/tc-fr30.c +++ b/gas/config/tc-fr30.c @@ -265,8 +265,6 @@ md_estimate_size_before_relax (fragP, segment) fragS * fragP; segT segment; { - int old_fr_fix = fragP->fr_fix; - /* The only thing we have to handle here are symbols outside of the current segment. They may be undefined or in a different segment in which case linker scripts may place them anywhere. @@ -275,6 +273,8 @@ md_estimate_size_before_relax (fragP, segment) if (S_GET_SEGMENT (fragP->fr_symbol) != segment) { + int old_fr_fix = fragP->fr_fix; + /* The symbol is undefined in this segment. Change the relaxation subtype to the max allowable and leave all further handling to md_convert_frag. */ @@ -297,6 +297,7 @@ md_estimate_size_before_relax (fragP, segment) /* Mark this fragment as finished. */ frag_wane (fragP); + return fragP->fr_fix - old_fr_fix; #else { const CGEN_INSN * insn; @@ -323,7 +324,8 @@ md_estimate_size_before_relax (fragP, segment) #endif } - return (fragP->fr_var + fragP->fr_fix - old_fr_fix); + /* Return the size of the variable part of the frag. */ + return md_relax_table[fragP->fr_subtype].rlx_length; } /* *fragP has been relaxed to its final size, and now needs to have |