OSDN Git Service

2004-10-18 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Oct 2004 22:03:15 +0000 (22:03 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 18 Oct 2004 22:03:15 +0000 (22:03 +0000)
        * gcc.c-torture/compile/pr17529.c: Fix test for non x86.
        Also xfail as the patch was reverted.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@89249 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr17529.c

index 5867f7f..ce7bc70 100644 (file)
@@ -1,5 +1,10 @@
 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.
+
+2004-10-18  Andrew Pinski  <pinskia@physics.uc.edu>
+
        PR middle-end/16973
        * gcc.dg/pr16973.c: New test.
 
index fc6a0ad..77c7a06 100644 (file)
@@ -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[];