This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug target/16446] Irix calling conventions for complex numbers
- From: "rsandifo at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 18 Jul 2004 13:19:17 -0000
- Subject: [Bug target/16446] Irix calling conventions for complex numbers
- References: <20040709031204.16446.billingd@gcc.gnu.org>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From rsandifo at gcc dot gnu dot org 2004-07-18 13:19 -------
On second thoughts, could you send the MIPSpro output of:
#include <complex.h>
double d1 (double x, complex double y) { return creal (y); }
double d2 (int x, complex double y) { return creal (y); }
double d3 (complex double y) { return creal (y); }
float f1 (float x, complex float y) { return crealf (y); }
float f2 (int x, complex float y) { return crealf (y); }
float f3 (complex float y) { return crealf (y); }
for both -n32 and -64? If you have access to an o32
fortran compiler, the output of the equivalent fortran
program for -32 would be really helpful too.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16446