diff options
author | Jeff Law <law@gcc.gnu.org> | 1993-12-14 14:02:09 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1993-12-14 14:02:09 -0700 |
commit | a7c1e13f93fc47cfb1433157c346d3103f23ffe8 (patch) | |
tree | 68437e403294159e2187255885ff598dcd7a746b | |
parent | a27d3fef5157ace221ec905cd13156ff7f4d00c8 (diff) | |
download | gcc-a7c1e13f93fc47cfb1433157c346d3103f23ffe8.zip gcc-a7c1e13f93fc47cfb1433157c346d3103f23ffe8.tar.gz gcc-a7c1e13f93fc47cfb1433157c346d3103f23ffe8.tar.bz2 |
pa.h (ASM_FILE_START): Emit a .file directive at the beginning of the output file if...
* pa.h (ASM_FILE_START): Emit a .file directive at the beginning
of the output file if debug symbols are being generated.
From-SVN: r6232
-rw-r--r-- | gcc/config/pa/pa.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index 6307496..dde6024 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -1571,6 +1571,8 @@ do { fprintf (FILE, "\t.SPACE $PRIVATE$\n\ \t.IMPORT $$dyncall,MILLICODE\n");\ if (profile_flag)\ fprintf (FILE, "\t.IMPORT _mcount, CODE\n");\ + if (write_symbols != NO_DEBUG) \ + output_file_directive ((FILE), main_input_filename); \ } while (0) /* Output to assembler file text saying following lines |