Commit 165848da by Aldy Hernandez Committed by Aldy Hernandez

rs6000.c (rs6000_complex_function_value): Unpack complex numbers <= 32 bits into two registers.

2003-06-04  Aldy Hernandez  <aldyh@redhat.com>

        * config/rs6000/rs6000.c (rs6000_complex_function_value): Unpack
        complex numbers <= 32 bits into two registers.

From-SVN: r67454
parent 74eda121
2003-06-04 Aldy Hernandez <aldyh@redhat.com>
* config/rs6000/rs6000.c (rs6000_complex_function_value): Unpack
complex numbers <= 32 bits into two registers.
2003-06-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* alpha.c (print_operand_address): Fix format specifier warnings.
......
......@@ -14452,7 +14452,8 @@ rs6000_complex_function_value (enum machine_mode mode)
regno = GP_ARG_RETURN;
/* 32-bit is OK since it'll go in r3/r4. */
if (TARGET_32BIT)
if (TARGET_32BIT
&& GET_MODE_BITSIZE (inner) >= 32)
return gen_rtx_REG (mode, regno);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment