aboutsummaryrefslogtreecommitdiff
path: root/gas/as.h
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1996-07-08 21:57:07 +0000
committerIan Lance Taylor <ian@airs.com>1996-07-08 21:57:07 +0000
commita5a781751a438e853d0f421909458aa3f75525aa (patch)
treec29826b8dd62cda80e57de2620ad76789ca70d0f /gas/as.h
parente675c634ddf8f405943a0ba73a6553050ea44ea3 (diff)
downloadgdb-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.h13
1 files changed, 4 insertions, 9 deletions
diff --git a/gas/as.h b/gas/as.h
index 7ae1951..f796178 100644
--- a/gas/as.h
+++ b/gas/as.h
@@ -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];
};