diff options
author | Steve Chamberlain <sac@cygnus> | 1992-05-26 23:49:49 +0000 |
---|---|---|
committer | Steve Chamberlain <sac@cygnus> | 1992-05-26 23:49:49 +0000 |
commit | d312e231b5eabbc1f7071ca3aabafada2e52b97f (patch) | |
tree | 0ca90d8d574079e03375aa563b53bd51a7e0a0de /gas | |
parent | cf2623b060b9c97713e66c697c2f65d9c8ef600e (diff) | |
download | gdb-d312e231b5eabbc1f7071ca3aabafada2e52b97f.zip gdb-d312e231b5eabbc1f7071ca3aabafada2e52b97f.tar.gz gdb-d312e231b5eabbc1f7071ca3aabafada2e52b97f.tar.bz2 |
Fixes from Andrew Smith
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 10 | ||||
-rw-r--r-- | gas/config/tc-a29k.c | 2 |
2 files changed, 11 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0099981..2f4bef6 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,13 @@ +Tue May 26 16:47:56 1992 Steve Chamberlain (sac@thepub.cygnus.com) + + * config/tc-a29k.c: lint + * listing.c, expr.c: patches from Andrew Smith + +Mon Apr 27 13:13:31 1992 K. Richard Pixley (rich@cygnus.com) + + * as.c, write.c: use -K rather than -k for the broken word warning + option. + Tue Apr 21 13:35:30 1992 K. Richard Pixley (rich@cygnus.com) * Makefile.in: do not print recursion lines. diff --git a/gas/config/tc-a29k.c b/gas/config/tc-a29k.c index c4165c4..5d7c046 100644 --- a/gas/config/tc-a29k.c +++ b/gas/config/tc-a29k.c @@ -858,7 +858,7 @@ fixS *fixP; case RELOC_CONSTH: return (R_IHIHALF); case RELOC_JUMPTARG: return (R_IREL); default: printf("need %o3\n", fixP->fx_r_type); - abort(0); + abort(); } /* switch on type */ return(0); |