diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2010-12-11 01:23:43 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2010-12-11 01:23:43 +0000 |
commit | d8f9a0d39a678eb59bef6d7165cba270c80679ee (patch) | |
tree | a1e895bc5e38bc76eb86de6e61198fce83bf98ef | |
parent | 42a75ac498fce9c4e74571815c18ebdc51d78e7d (diff) | |
download | gcc-d8f9a0d39a678eb59bef6d7165cba270c80679ee.zip gcc-d8f9a0d39a678eb59bef6d7165cba270c80679ee.tar.gz gcc-d8f9a0d39a678eb59bef6d7165cba270c80679ee.tar.bz2 |
funcorder.c: Remove XFAIL for hppa*64*-*-*.
* gcc.dg/funcorder.c: Remove XFAIL for hppa*64*-*-*.
From-SVN: r167708
-rw-r--r-- | gcc/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/funcorder.c | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3ab2382..cc83f27 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -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 diff --git a/gcc/testsuite/gcc.dg/funcorder.c b/gcc/testsuite/gcc.dg/funcorder.c index a3edc12..0dec72c 100644 --- a/gcc/testsuite/gcc.dg/funcorder.c +++ b/gcc/testsuite/gcc.dg/funcorder.c @@ -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)); |