This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Typos in i386.c
- To: gcc at gcc dot gnu dot org
- Subject: Typos in i386.c
- From: "H . J . Lu" <hjl at lucon dot org>
- Date: Fri, 26 Oct 2001 10:49:29 -0700
Most, if not all, processor_costs in i386.c have
....
{8, 8, 8}, /* cost of loading fp registers
in SFmode, DFmode and XFmode */
{8, 8, 8}, /* cost of loading integer registers */
....
which is wrong. It should be
{8, 8, 8}, /* cost of loading fp registers
in SFmode, DFmode and XFmode */
{8, 8, 8}, /* cost of storing fp registers
in SFmode, DFmode and XFmode */
H.J.