diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-05-01 00:48:33 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-04-30 17:48:33 -0700 |
commit | c08732313cfc81fadfe6487a722f16931f9dae6a (patch) | |
tree | 3fb9c714ca89217d0cff1d40182441b961b99c2e | |
parent | 21ccb11310789e97a87aa8393b3d5a889a634178 (diff) | |
download | gcc-c08732313cfc81fadfe6487a722f16931f9dae6a.zip gcc-c08732313cfc81fadfe6487a722f16931f9dae6a.tar.gz gcc-c08732313cfc81fadfe6487a722f16931f9dae6a.tar.bz2 |
re PR target/11608 (testcase gcc.dg/debug/20020327-1.c fails with -gstabs1 etc.)
2004-04-20 Andrew Pinski <pinskia@physics.uc.edu>
PR target/11608
* config/sh/elf.h (DBX_OUTPUT_MAIN_SOURCE_FILE_END): Update and make it
more like the one in config/dbxelf.h.
From-SVN: r81379
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/sh/elf.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 76b6a98..658a282 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2004-04-20 Andrew Pinski <pinskia@physics.uc.edu> + + PR target/11608 + * config/sh/elf.h (DBX_OUTPUT_MAIN_SOURCE_FILE_END): Update and make it + more like the one in config/dbxelf.h. + 2004-04-30 Zack Weinberg <zack@codesourcery.com> * tree.h (SET_ARRAY_OR_VECTOR_CHECK): Rename to SET_OR_ARRAY_CHECK diff --git a/gcc/config/sh/elf.h b/gcc/config/sh/elf.h index 964d885..f5cfcb6 100644 --- a/gcc/config/sh/elf.h +++ b/gcc/config/sh/elf.h @@ -95,7 +95,7 @@ while (0) #define DBX_OUTPUT_MAIN_SOURCE_FILE_END(FILE, FILENAME) \ do { \ text_section (); \ - fprintf ((FILE), "\t.stabs \"\",%d,0,0,Letext\nLetext:\n", N_SO); \ + asm_fprintf ((FILE), "\t.stabs \"\",%d,0,0,%LLetext\n%LLetext:\n", N_SO); \ } while (0) #undef STARTFILE_SPEC |