diff options
author | Steve Chamberlain <sac@cygnus> | 1992-02-25 22:27:44 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-02-25 22:27:44 +0000 |
commit | f24f7577808a3fc26baeb9d46ddb1e65571b5c7e (patch) | |
tree | 69fea4dc67e5cddfed5e8fb5cdb73afec515e19e /gas/expr.c | |
parent | b74fd080fb7e6b88a40ce9641029071b7fa3c3d9 (diff) | |
download | gdb-f24f7577808a3fc26baeb9d46ddb1e65571b5c7e.zip gdb-f24f7577808a3fc26baeb9d46ddb1e65571b5c7e.tar.gz gdb-f24f7577808a3fc26baeb9d46ddb1e65571b5c7e.tar.bz2 |
* 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
Diffstat (limited to 'gas/expr.c')
-rw-r--r-- | gas/expr.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 ) |