diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 18:13:58 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-28 18:13:58 +0000 |
commit | a516dd3a35123c9b81e90e41f4acfcb2928ad00f (patch) | |
tree | a5283426fa9e3f304466e2eada188afb3ae944c6 /gcc/xcoffout.c | |
parent | 390d4a25d0b107326d66f802f747407c34139738 (diff) | |
download | gcc-a516dd3a35123c9b81e90e41f4acfcb2928ad00f.tar.gz |
* xcoffout.c (xcoffout_declare_function): Add documentation.
* rs6000.c (num_insns_constant_wide): Use TARGET_POWERPC64 not
TARGET_64BIT. Compare constant to -1, not bit pattern.
(easy_fp_constant): Use TARGET_POWERPC64 not TARGET_64BIT.
(expand_block_move): Allow 8 DImode loads for PowerPC64. Fix
gen_movsi typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29697 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/xcoffout.c')
-rw-r--r-- | gcc/xcoffout.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c index 4da507979ba..6ee08ec2fb1 100644 --- a/gcc/xcoffout.c +++ b/gcc/xcoffout.c @@ -485,6 +485,9 @@ xcoffout_declare_function (file, decl, name) file and/or at the wrong line number. */ xcoffout_source_file (file, DECL_SOURCE_FILE (decl), 0); dbxout_symbol (decl, 0); + + /* .function NAME, TOP, MAPPING, TYPE, SIZE + 16 and 044 are placeholders for backwards compatibility */ fprintf (file, "\t.function .%s,.%s,16,044,FE..%s-.%s\n", n, n, n, n); } |