diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-07-08 21:57:07 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-07-08 21:57:07 +0000 |
commit | a5a781751a438e853d0f421909458aa3f75525aa (patch) | |
tree | c29826b8dd62cda80e57de2620ad76789ca70d0f /gas/as.h | |
parent | e675c634ddf8f405943a0ba73a6553050ea44ea3 (diff) | |
download | gdb-a5a781751a438e853d0f421909458aa3f75525aa.zip gdb-a5a781751a438e853d0f421909458aa3f75525aa.tar.gz gdb-a5a781751a438e853d0f421909458aa3f75525aa.tar.bz2 |
* as.h: Don't define const or volatile.
* flonum.h: Don't define const.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -189,15 +189,6 @@ extern PTR bfd_alloc_by_size_t PARAMS ((bfd *abfd, size_t sz)); #define __FILE__ "unknown" #endif /* __FILE__ */ -#ifndef __STDC__ -#ifndef const -#define const -#endif -#ifndef volatile -#define volatile -#endif -#endif /* ! __STDC__ */ - #ifndef FOPEN_WB #ifdef GO32 #include "fopen-bin.h" @@ -446,6 +437,10 @@ struct frag create a union here. */ char fr_pcrel_adjust, fr_bsr; + /* Where the frag was created, or where it became a variant frag. */ + char *fr_file; + unsigned int fr_line; + /* Data begins here. */ char fr_literal[1]; }; |