mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
2000-04-20 Jason Eckhardt <jle@redhat.com>
* config/tc-d10v.h (tc_frob_label): Update the symbol's frag since frag_now can change after d10v_cleanup is called.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2000-04-20 Jason Eckhardt <jle@redhat.com>
|
||||||
|
|
||||||
|
* config/tc-d10v.h (tc_frob_label): Update the symbol's frag
|
||||||
|
since frag_now can change after d10v_cleanup is called.
|
||||||
|
|
||||||
2001-04-16 David O'Brien <obrien@FreeBSD.org>
|
2001-04-16 David O'Brien <obrien@FreeBSD.org>
|
||||||
|
|
||||||
* configure.in: Add the em type for FreeBSD targets.
|
* configure.in: Add the em type for FreeBSD targets.
|
||||||
|
@ -56,7 +56,8 @@ int d10v_cleanup PARAMS ((void));
|
|||||||
#define md_do_align(a,b,c,d,e) d10v_cleanup()
|
#define md_do_align(a,b,c,d,e) d10v_cleanup()
|
||||||
#define tc_frob_label(sym) do {\
|
#define tc_frob_label(sym) do {\
|
||||||
d10v_cleanup(); \
|
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)
|
} while (0)
|
||||||
|
|
||||||
#define obj_fix_adjustable(fixP) d10v_fix_adjustable(fixP)
|
#define obj_fix_adjustable(fixP) d10v_fix_adjustable(fixP)
|
||||||
|
Reference in New Issue
Block a user