This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Another PA ELF fix



The PA requires that only labels start in column zero...  Fun fun fun.


        * dbxelf.h (ASM_OUTPUT_SOURCE_LINE): Do not put assembler
        directives in column zero.

Index: dbxelf.h
===================================================================
RCS file: /egcs/carton/cvsfiles/egcs/gcc/config/dbxelf.h,v
retrieving revision 1.2
diff -c -3 -p -r1.2 dbxelf.h
*** dbxelf.h	1999/05/20 01:54:28	1.2
--- dbxelf.h	1999/07/08 20:50:02
*************** do									\
*** 86,92 ****
      static int sym_lineno = 1;						\
      char temp[256];							\
      ASM_GENERATE_INTERNAL_LABEL (temp, "LM", sym_lineno);		\
!     fprintf (FILE, ".stabn 68,0,%d,", LINE);				\
      assemble_name (FILE, temp);						\
      putc ('-', FILE);							\
      assemble_name (FILE,						\
--- 86,92 ----
      static int sym_lineno = 1;						\
      char temp[256];							\
      ASM_GENERATE_INTERNAL_LABEL (temp, "LM", sym_lineno);		\
!     fprintf (FILE, "\t.stabn 68,0,%d,", LINE);				\
      assemble_name (FILE, temp);						\
      putc ('-', FILE);							\
      assemble_name (FILE,						\





Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]