This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [committed,testcase] PR tree-opt/17529



On Oct 18, 2004, at 5:53 PM, Andrew Pinski wrote:



On Oct 18, 2004, at 5:37 PM, Ulrich Weigand wrote:


Andrew Pinski wrote:

I committed the testcase for this PR because it was fixed by a recent patch.

This one fails on all non-x86 targets.

Actually it fails every where because the patch had to be reverted, I will fix the patch and also xfail it.

And this is what I committed:
Index: gcc.c-torture/compile/pr17529.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/testsuite/gcc.c-torture/compile/pr17529.c,v
retrieving revision 1.1
diff -u -p -r1.1 pr17529.c
--- gcc.c-torture/compile/pr17529.c 17 Oct 2004 17:24:59 -0000 1.1
+++ gcc.c-torture/compile/pr17529.c 18 Oct 2004 22:01:18 -0000
@@ -1,7 +1,9 @@
+/* { dg-xfail-if "PR middle-end/17529" { "*-*-*" } { "*" } { "" } } */
+
static inline void
bar (const int * const x)
{
- __asm__ __volatile__ ("paddd" " %0, %%" "mm0"::"m" (*x));
+ __asm__ __volatile__ (""::"m" (*x));
}


static const int y[];

2004-10-18 Andrew Pinski <pinskia@physics.uc.edu>

       * gcc.c-torture/compile/pr17529.c: Fix test for non x86.
       Also xfail as the patch was reverted.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]