summaryrefslogtreecommitdiffstats
path: root/gas/config/tc-m32r.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>2001-02-13 21:27:52 +0000
committerIan Lance Taylor <ian@airs.com>2001-02-13 21:27:52 +0000
commitc842b53ae1792ed3bc68759dee24dffdbf3bed32 (patch)
tree9112893548d98202180c3765c1e173b5a0a48fbc /gas/config/tc-m32r.c
parent6433dece0aec566a5f07be9512ad4c39ff3d5b72 (diff)
downloadppe42-binutils-c842b53ae1792ed3bc68759dee24dffdbf3bed32.tar.gz
ppe42-binutils-c842b53ae1792ed3bc68759dee24dffdbf3bed32.zip
* write.c (is_dnrange): Stop as soon as the address becomes
larger. (relax_frag): Add segment parameter. Only call symbol_get_frag once. Only call is_dnrange if the symbol is in the same segment, and the symbol address is larger. (relax_segment): Pass segment to md_relax_frag and relax_frag. * write.h (relax_frag): Update declaration. * config/tc-fr30.c (fr30_relax_frag): Add segment parameter. Pass it to relax_frag. * config/tc-m32r.c (m32r_relax_frag): Likewise. * config/tc-m32r.h (md_relax_frag): Add segment parameter. (m32r_relax_frag): Update declaration. * config/tc-mips.h (md_relax_frag): Add segment parameter. * config/tc-tic54x.h (md_relax_frag): Likewise. * doc/internals.texi (CPU backend): Update documentation for md_relax_frag.
Diffstat (limited to 'gas/config/tc-m32r.c')
-rw-r--r--gas/config/tc-m32r.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gas/config/tc-m32r.c b/gas/config/tc-m32r.c
index 062181e05e..cf68fe346e 100644
--- a/gas/config/tc-m32r.c
+++ b/gas/config/tc-m32r.c
@@ -1384,7 +1384,8 @@ const relax_typeS md_relax_table[] =
};
long
-m32r_relax_frag (fragP, stretch)
+m32r_relax_frag (segment, fragP, stretch)
+ segT segment;
fragS *fragP;
long stretch;
{
@@ -1411,7 +1412,7 @@ m32r_relax_frag (fragP, stretch)
}
else
{
- growth = relax_frag (fragP, stretch);
+ growth = relax_frag (segment, fragP, stretch);
/* Long jump on odd halfword boundary? */
if (fragP->fr_subtype == 2 && (address & 3) != 0)
OpenPOWER on IntegriCloud