* dw2gencfi.c, dw2gencfi.h: New files.
[binutils-gdb.git] / gas / write.h
index 451215d7e8189c4f0646512e758b2f0a99d14665..8a1c860444edff17c92c7e0a4e13059e35f90e29 100644 (file)
@@ -40,7 +40,9 @@
 
 /* This is the name of a fake symbol which will never appear in the
    assembler output.  S_IS_LOCAL detects it because of the \001.  */
+#ifndef FAKE_LABEL_NAME
 #define FAKE_LABEL_NAME "L0\001"
+#endif
 
 #include "bit_fix.h"
 
@@ -105,6 +107,9 @@ struct fix
   /* Absolute number we add in.  */
   valueT fx_offset;
 
+  /* The value of dot when the fixup expression was parsed.  */
+  addressT fx_dot_value;
+
   /* Next fixS in linked list, or NULL.  */
   struct fix *fx_next;
 
@@ -158,6 +163,8 @@ struct fix
 typedef struct fix fixS;
 
 extern int finalize_syms;
+extern symbolS *abs_section_sym;
+extern addressT dot_value;
 
 #ifndef BFD_ASSEMBLER
 extern char *next_object_file_charP;