diff options
author | Ben Elliston <bje@wasabisystems.com> | 2003-12-02 09:07:25 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2003-12-02 20:07:25 +1100 |
commit | 1d3f6c9fca057c3eec26affec0842a7d55ea759d (patch) | |
tree | 7e7011675fda3adfd94d1519b5e02150718f5f16 /gcc/xcoff.h | |
parent | 2c4ed4565a5bc1cc785dc95d36df2414c06c709b (diff) | |
download | gcc-1d3f6c9fca057c3eec26affec0842a7d55ea759d.zip gcc-1d3f6c9fca057c3eec26affec0842a7d55ea759d.tar.gz gcc-1d3f6c9fca057c3eec26affec0842a7d55ea759d.tar.bz2 |
[approved by wilson]
* dbxstclass.h: Rename from this ..
* xcoff.h: .. to this.
* xcoffout.c: Include xcoff.h.
From-SVN: r74167
Diffstat (limited to 'gcc/xcoff.h')
-rw-r--r-- | gcc/xcoff.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gcc/xcoff.h b/gcc/xcoff.h new file mode 100644 index 0000000..2d003fe --- /dev/null +++ b/gcc/xcoff.h @@ -0,0 +1,17 @@ +/* Storage classes in XCOFF object file format designed for DBX's use. + This info is from the `Files Reference' manual for IBM's AIX version 3 + for the RS6000. */ + +#define C_GSYM 0x80 +#define C_LSYM 0x81 +#define C_PSYM 0x82 +#define C_RSYM 0x83 +#define C_RPSYM 0x84 +#define C_STSYM 0x85 + +#define C_BCOMM 0x87 +#define C_ECOML 0x88 +#define C_ECOMM 0x89 +#define C_DECL 0x8c +#define C_ENTRY 0x8d +#define C_FUN 0x8e |