diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-21 14:53:11 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-10-21 14:53:11 +0000 |
commit | cadcb2903fa6a35b0f980a5cc8dfbbc4fc28d4c0 (patch) | |
tree | ad17b968a673ec6c2eb174dc78b401a5116d30f2 /gcc/dbxout.c | |
parent | 9f9e4dc6a2f88e2f6496dd5b9b1c0c211439c54b (diff) | |
download | gcc-cadcb2903fa6a35b0f980a5cc8dfbbc4fc28d4c0.tar.gz |
* dbxout.c (DBX_FINISH_SYMBOL): Add asm_out_file argument.
* xcoffout.h (DBX_FINISH_SYMBOL): Change asmfile to (ASMFILE).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89378 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index df5b4b0b5b1..9f8c37aefb0 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -2774,7 +2774,7 @@ static void dbxout_finish_symbol (tree sym) { #ifdef DBX_FINISH_SYMBOL - DBX_FINISH_SYMBOL (sym); + DBX_FINISH_SYMBOL (asm_out_file, sym); #else int line = 0; if (use_gnu_debug_info_extensions && sym != 0) |