From d8f9a0d39a678eb59bef6d7165cba270c80679ee Mon Sep 17 00:00:00 2001 From: John David Anglin Date: Sat, 11 Dec 2010 01:23:43 +0000 Subject: [PATCH] funcorder.c: Remove XFAIL for hppa*64*-*-*. * gcc.dg/funcorder.c: Remove XFAIL for hppa*64*-*-*. From-SVN: r167708 --- gcc/testsuite/ChangeLog | 4 ++++ 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 3ab23827c756..cc83f27f4663 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2010-12-10 John David Anglin + + * gcc.dg/funcorder.c: Remove XFAIL for hppa*64*-*-*. + 2010-12-10 Nicola Pero * 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 a3edc1272f93..0dec72c7d02b 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));