diff options
Diffstat (limited to 'gas/config/tc-d10v.h')
-rw-r--r-- | gas/config/tc-d10v.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gas/config/tc-d10v.h b/gas/config/tc-d10v.h index d8eadf3..4ab5460 100644 --- a/gas/config/tc-d10v.h +++ b/gas/config/tc-d10v.h @@ -56,7 +56,8 @@ int d10v_cleanup PARAMS ((void)); #define md_do_align(a,b,c,d,e) d10v_cleanup() #define tc_frob_label(sym) do {\ d10v_cleanup(); \ - S_SET_VALUE (sym, (valueT) frag_now_fix ()); \ + symbol_set_frag (sym, frag_now); \ + S_SET_VALUE (sym, (valueT) frag_now_fix ()); \ } while (0) #define obj_fix_adjustable(fixP) d10v_fix_adjustable(fixP) |