diff options
author | Richard Stallman <rms@gnu.org> | 1992-10-18 08:16:49 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1992-10-18 08:16:49 +0000 |
commit | bc9aee2d4d2763c95a4c7a4124df18c38528e8fc (patch) | |
tree | 986c26b2560c5558cf8b23a4b356671e57ffe2fb /gcc | |
parent | c2f4acb703873f3a4f4e419afadad78417396f0e (diff) | |
download | gcc-bc9aee2d4d2763c95a4c7a4124df18c38528e8fc.zip gcc-bc9aee2d4d2763c95a4c7a4124df18c38528e8fc.tar.gz gcc-bc9aee2d4d2763c95a4c7a4124df18c38528e8fc.tar.bz2 |
(output_addr_const): Always use FILE, not asm_out_file.
From-SVN: r2508
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 3e97874..5b4d531 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: |