diff options
Diffstat (limited to 'gas/frags.c')
-rw-r--r-- | gas/frags.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/frags.c b/gas/frags.c index cd3e990fab4..9ff577fc633 100644 --- a/gas/frags.c +++ b/gas/frags.c @@ -176,7 +176,7 @@ frag_new (size_t old_frags_var_max_size gas_assert (former_last_fragP == frag_now); frag_now = frag_alloc (&frchP->frch_obstack); - as_where (&frag_now->fr_file, &frag_now->fr_line); + frag_now->fr_file = as_where (&frag_now->fr_line); /* Generally, frag_now->points to an address rounded up to next alignment. However, characters will add to obstack frags @@ -237,7 +237,7 @@ frag_var_init (relax_stateT type, size_t max_chars, size_t var, #ifdef TC_FRAG_INIT TC_FRAG_INIT (frag_now); #endif - as_where (&frag_now->fr_file, &frag_now->fr_line); + frag_now->fr_file = as_where (&frag_now->fr_line); frag_new (max_chars); } |