From bc9aee2d4d2763c95a4c7a4124df18c38528e8fc Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sun, 18 Oct 1992 08:16:49 +0000 Subject: [PATCH] (output_addr_const): Always use FILE, not asm_out_file. From-SVN: r2508 --- gcc/final.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/final.c b/gcc/final.c index 3e97874587c..5b4d5313843 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -2229,12 +2229,12 @@ output_addr_const (file, x) case LABEL_REF: ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (XEXP (x, 0))); - assemble_name (asm_out_file, buf); + assemble_name (file, buf); break; case CODE_LABEL: ASM_GENERATE_INTERNAL_LABEL (buf, "L", CODE_LABEL_NUMBER (x)); - assemble_name (asm_out_file, buf); + assemble_name (file, buf); break; case CONST_INT: -- 2.30.2