==> bfd/ChangeLog <==
[deliverable/binutils-gdb.git] / ld / deffile.h
index 1e7a0cbeeddfd2eb306d17149d7bc2966a09fedf..79953b350f8fa6d1e3c279b727b0ac61b0ac808d 100644 (file)
@@ -53,6 +53,12 @@ typedef struct def_file_import {
   int data;                    /* = 1 if data */
 } def_file_import;
 
+typedef struct def_file_aligncomm {
+  struct def_file_aligncomm *next;     /* Chain pointer.  */
+  char *symbol_name;           /* Name of common symbol.  */
+  unsigned int alignment;      /* log-2 alignment.        */
+} def_file_aligncomm;
+
 typedef struct def_file {
   /* From the NAME or LIBRARY command.  */
   char *name;
@@ -83,6 +89,10 @@ typedef struct def_file {
 
   /* From the VERSION command, -1 if not specified.  */
   int version_major, version_minor;
+
+  /* Only expected from .drectve sections, not .DEF files.  */
+  def_file_aligncomm *aligncomms;
+
 } def_file;
 
 extern def_file *def_file_empty (void);
This page took 0.025627 seconds and 4 git commands to generate.