aboutsummaryrefslogtreecommitdiff
path: root/ld/ldsym.h
diff options
context:
space:
mode:
authorSteve Chamberlain <steve@cygnus>1991-08-01 23:29:23 +0000
committerSteve Chamberlain <steve@cygnus>1991-08-01 23:29:23 +0000
commit8101605119976f94d00db43a2d78d7fb341a7680 (patch)
tree1324aef60dc521be88fa9db8a3713b49e83d1ead /ld/ldsym.h
parent812df84bc9a1e56f09663dc70a2725a643525d1d (diff)
downloadgdb-8101605119976f94d00db43a2d78d7fb341a7680.zip
gdb-8101605119976f94d00db43a2d78d7fb341a7680.tar.gz
gdb-8101605119976f94d00db43a2d78d7fb341a7680.tar.bz2
Added new keyword 'CONSTRUCTORS'
Added N_WARNING handling Added N_INDR handling
Diffstat (limited to 'ld/ldsym.h')
-rw-r--r--ld/ldsym.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ld/ldsym.h b/ld/ldsym.h
index 9229ea0..f6fc4d0 100644
--- a/ld/ldsym.h
+++ b/ld/ldsym.h
@@ -44,6 +44,17 @@ typedef struct user_symbol_struct
*/
asymbol **scoms_chain;
+
+
+
+
+ /* If this symbol is a constructor */
+#define SYM_CONSTRUCTOR 1
+ /* If this symbol is a warning symbol */
+#define SYM_WARNING 2
+ /* IF this is an alias for another symbol */
+#define SYM_INDIRECT 4
+ int flags;
} ldsym_type;