funcorder.c: Remove XFAIL for hppa*64*-*-*.

* gcc.dg/funcorder.c: Remove XFAIL for hppa*64*-*-*.

From-SVN: r167708
This commit is contained in:
John David Anglin 2010-12-11 01:23:43 +00:00 committed by John David Anglin
parent 42a75ac498
commit d8f9a0d39a
2 changed files with 6 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2010-12-10 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* gcc.dg/funcorder.c: Remove XFAIL for hppa*64*-*-*.
2010-12-10 Nicola Pero <nicola.pero@meta-innovation.com>
* objc.dg/fobjc-std-1.m: Updated to test that class extensions

View file

@ -1,10 +1,8 @@
/* { dg-do compile } */
/* { dg-options "-O2 -funit-at-a-time" } */
/* { dg-final { if [ istarget hppa*-*-* ] { scan-assembler-not "link_error,%r" { xfail hppa*64*-*-* } } else { scan-assembler-not "link_error" } } } */
/* { dg-final { scan-assembler-not "link_error" } } */
/* In unit-at-time the functions should be assembled in order
e q t main, so we realize that they are pure. The test is
xfailed on hppa64 because variable r in q is sign extended
to 64-bits. As a result, "if (t!=mem)" is not simplified. */
e q t main, so we realize that they are pure. */
static int mem;
static int e(void) __attribute__ ((noinline));