diff options
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/dbxout.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 50a94b3..2e779e7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-09-23 Dale Johannesen <dalej@apple.com> + * dbxout.c (dbxout_parms): Set current_sym_code for params + passed on stack by invisible reference. + 2002-09-23 Richard Earnshaw <rearnsha@arm.com> * arm/unknown-elf.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Always allocate diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 2ce0fb8..18d61eb 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -2681,6 +2681,7 @@ dbxout_parms (parms) current_sym_value = INTVAL (XEXP (XEXP (XEXP (DECL_RTL (parms), 0), 0), 1)); current_sym_addr = 0; + current_sym_code = N_PSYM; FORCE_TEXT; fprintf (asmfile, "%s\"%s:v", ASM_STABS_OP, decl_name); |
