Commit 72bd078f by Uros Bizjak Committed by Uros Bizjak

re PR target/32065 (Many dfp testsuite failures for -msse targets)

        PR target/32065
        * config/i386/i386.md (movti): Handle push operands via
        ix86_expand_push().

testsuite/ChangeLog:

        PR target/32065
        * gcc.target/i386/pr32065-1.c: Rename from pr32065.c.  Add -std=gnu99
        to compile options.
        * gcc.target/i386/pr32065-2.c: New test.

From-SVN: r125102
parent 88fdfd5a
2007-05-26 Uros Bizjak <ubizjak@gmail.com>
PR target/32065
* config/i386/i386.md (movti): Handle push operands via
ix86_expand_push().
2007-05-26 Kazu Hirata <kazu@codesourcery.com> 2007-05-26 Kazu Hirata <kazu@codesourcery.com>
* basic-block.h: Remove the prototype for merge_seq_blocks. * basic-block.h: Remove the prototype for merge_seq_blocks.
......
...@@ -2176,6 +2176,8 @@ ...@@ -2176,6 +2176,8 @@
{ {
if (TARGET_64BIT) if (TARGET_64BIT)
ix86_expand_move (TImode, operands); ix86_expand_move (TImode, operands);
else if (push_operand (operands[0], TImode))
ix86_expand_push (TImode, operands[1]);
else else
ix86_expand_vector_move (TImode, operands); ix86_expand_vector_move (TImode, operands);
DONE; DONE;
......
2007-05-26 Uros Bizjak <ubizjak@gmail.com>
PR target/32065
* gcc.target/i386/pr32065-1.c: Rename from pr32065.c. Add -std=gnu99
to compile options.
* gcc.target/i386/pr32065-2.c: New test.
2007-05-26 Jerry DeLisle <jvdelisle@gcc.gnu.org> 2007-05-26 Jerry DeLisle <jvdelisle@gcc.gnu.org>
PR fortran/31813 PR fortran/31813
...@@ -13,7 +20,7 @@ ...@@ -13,7 +20,7 @@
PR tree-opt/32090 PR tree-opt/32090
* g++.dg/opt/array2.C: New testcase. * g++.dg/opt/array2.C: New testcase.
007-05-26 Uros Bizjak <ubizjak@gmail.com> 2007-05-26 Uros Bizjak <ubizjak@gmail.com>
PR target/32065 PR target/32065
* gcc.target/i386/pr32065.c: New test. * gcc.target/i386/pr32065.c: New test.
/* { dg-do compile { target dfp } } */ /* { dg-do compile { target dfp } } */
/* { dg-options "-msse" } */ /* { dg-options "-msse -std=gnu99" } */
_Decimal128 test (void) _Decimal128 test (void)
{ {
......
/* { dg-do run { target dfp } } */
/* { dg-options "-Os -msse -std=gnu99" } */
extern void abort (void);
int main()
{
if (7.999999999999999999999999999999999E6144dl + 3.0E6144dl
!= __builtin_infd32 ())
abort ();
return 0;
}
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