aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2004-02-19 12:46:49 +0000
committerNathan Sidwell <nathan@gcc.gnu.org>2004-02-19 12:46:49 +0000
commit78cb77c13e86cb36640cf57230e2211aaea0ef2f (patch)
tree4639da085964081d850a4a570ae47a6cae0da53f
parent428eae942cbe6b1eb416a576c326b052a1a774bd (diff)
downloadgcc-78cb77c13e86cb36640cf57230e2211aaea0ef2f.zip
gcc-78cb77c13e86cb36640cf57230e2211aaea0ef2f.tar.gz
gcc-78cb77c13e86cb36640cf57230e2211aaea0ef2f.tar.bz2
attr-ctor1.C: XFAIL on hppa.
* g++.dg/parse/attr-ctor1.C: XFAIL on hppa. * g++.dg/opt/template1.C: Robustify assembler regexp From-SVN: r78097
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.dg/opt/template1.C2
-rw-r--r--gcc/testsuite/g++.dg/parse/attr-ctor1.C4
3 files changed, 9 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 548d7d4..4de2e4b 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-19 Nathan Sidwell <nathan@codesourcery.com>
+
+ * g++.dg/parse/attr-ctor1.C: XFAIL on hppa.
+ * g++.dg/opt/template1.C: Robustify assembler regexp
+
2004-02-19 Eric Botcazou <ebotcazou@libertysurf.fr>
* gcc.c-torture/execute/simd-4.x: Remove.
diff --git a/gcc/testsuite/g++.dg/opt/template1.C b/gcc/testsuite/g++.dg/opt/template1.C
index 9003be1..f254346 100644
--- a/gcc/testsuite/g++.dg/opt/template1.C
+++ b/gcc/testsuite/g++.dg/opt/template1.C
@@ -1,5 +1,5 @@
// { dg-options "-O2" }
-// { dg-final { scan-assembler-not "foo1" } }
+// { dg-final { scan-assembler-not "\n_?_ZN1AILi0EE4foo1Ev\[: \t\n\]" } }
template <int>
struct A {
diff --git a/gcc/testsuite/g++.dg/parse/attr-ctor1.C b/gcc/testsuite/g++.dg/parse/attr-ctor1.C
index 4f8cd1d..d48543c 100644
--- a/gcc/testsuite/g++.dg/parse/attr-ctor1.C
+++ b/gcc/testsuite/g++.dg/parse/attr-ctor1.C
@@ -2,7 +2,9 @@
// Origin: <petr@scssoft.com>
// { dg-do compile }
+// Requires section attribute support
+
class A
{
- __attribute__((section("whatever"))) A();
+ __attribute__((section("whatever"))) A(); // { dg-bogus "" "" { xfail hppa*-*-hpux* } }
};