mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-30 12:44:10 +08:00
* as.h: include bfd.h if using many sections
* expr.c: LOCAL_LABELS_FB had been changed to lower case - so local labels didn't work. * listing.c (list_symbol_table): don't core dump when there's no symbol there. * write.c, write.h: call fix_new with the right number of args on the H8. * config/tc-h8300.[ch] : fix bugs reported by HMSI, and make errors nicer
This commit is contained in:
parent
b74fd080fb
commit
f24f757780
@ -1,3 +1,15 @@
|
||||
Tue Feb 25 14:17:15 1992 Steve Chamberlain (sac at rtl.cygnus.com)
|
||||
|
||||
* as.h: include bfd.h if using many sections
|
||||
* expr.c: LOCAL_LABELS_FB had been changed to lower case - so
|
||||
local labels didn't work.
|
||||
* listing.c (list_symbol_table): don't core dump when there's no
|
||||
symbol there.
|
||||
* write.c, write.h: call fix_new with the right number of args on
|
||||
the H8.
|
||||
* config/tc-h8300.[ch] : fix bugs reported by HMSI, and make
|
||||
errors nices
|
||||
|
||||
Sat Feb 22 12:26:28 1992 Steve Chamberlain (sac at rtl.cygnus.com)
|
||||
|
||||
* app.c: MRI compatibility - allow single quote to start a string.
|
||||
|
@ -228,10 +228,10 @@ expressionS *expressionP;
|
||||
if (number<10)
|
||||
{
|
||||
if (0
|
||||
#ifdef local_labels_fb
|
||||
#ifdef LOCAL_LABELS_FB
|
||||
|| c=='b'
|
||||
#endif
|
||||
#ifdef local_labels_dollar
|
||||
#ifdef LOCAL_LABELS_DOLLAR
|
||||
|| (c=='$' && local_label_defined[number])
|
||||
#endif
|
||||
)
|
||||
@ -265,10 +265,10 @@ expressionS *expressionP;
|
||||
else
|
||||
{
|
||||
if (0
|
||||
#ifdef local_labels_fb
|
||||
#ifdef LOCAL_LABELS_FB
|
||||
|| c == 'f'
|
||||
#endif
|
||||
#ifdef local_labels_dollar
|
||||
#ifdef LOCAL_LABELS_DOLLAR
|
||||
|| (c=='$' && !local_label_defined[number])
|
||||
#endif
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user