diff options
author | dalej <dalej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-23 23:07:05 +0000 |
---|---|---|
committer | dalej <dalej@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-09-23 23:07:05 +0000 |
commit | b109f4ea61abe8894b72e6b2b725ddb480221216 (patch) | |
tree | 116960ca87098415b57d8b6c280b655fb94c4f3c /gcc/dbxout.c | |
parent | c0e741c704b8e3aee428035f361836b5e5973630 (diff) | |
download | gcc-b109f4ea61abe8894b72e6b2b725ddb480221216.tar.gz |
Set current_sym_code in a case where it was missing.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@57456 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r-- | gcc/dbxout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 2ce0fb8ff23..18d61eb19a5 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); |