diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a827229ad5f2..26b9d0ff87e0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2005-04-02 Geoffrey Keating + PR 20650 + * config/rs6000/rs6000.md (fix_truncdfsi2): Make destination + a register. + * config/rs6000/t-darwin (TARGET_LIBGCC2_CFLAGS): Add -pipe. * config/t-darwin (TARGET_LIBGCC2_CFLAGS): Likewise. diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index 916f39157dbe..d97d3be10776 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -5272,8 +5272,10 @@ DONE; }") +; In the TARGET_PPC_GFXOPT case, this could and probably should +; take a memory destination; but actually making this work is hard. (define_expand "fix_truncdfsi2" - [(parallel [(set (match_operand:SI 0 "reg_or_mem_operand" "") + [(parallel [(set (match_operand:SI 0 "gpc_reg_operand" "") (fix:SI (match_operand:DF 1 "gpc_reg_operand" ""))) (clobber (match_dup 2)) (clobber (match_dup 3))])] diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 2f207eb36679..b8c472441313 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2005-04-02 Geoffrey Keating + + * gcc.dg/rs6000-fpint.c: New. + 2005-04-01 Joseph S. Myers * gcc.dg/old-style-then-proto-1.c: New test. diff --git a/gcc/testsuite/gcc.dg/rs6000-fpint.c b/gcc/testsuite/gcc.dg/rs6000-fpint.c new file mode 100644 index 000000000000..410f780de8b8 --- /dev/null +++ b/gcc/testsuite/gcc.dg/rs6000-fpint.c @@ -0,0 +1,11 @@ +/* { dg-do compile { target powerpc*-*-* rs6000-*-* } } */ +/* { dg-options "-mno-powerpc-gfxopt" } */ +/* { dg-final { scan-assembler-not "stfiwx" } } */ + +/* A basic test of the old-style (not stfiwx) fp -> int conversion. */ +int f(double a, double b) +{ + int a1 = a; + int b1 = b; + return a1+b1; +}