diff options
| -rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
| -rw-r--r-- | gcc/testsuite/g++.dg/ext/instantiate1.C | 8 | ||||
| -rw-r--r-- | gcc/testsuite/g++.dg/ext/instantiate2.C | 4 | ||||
| -rw-r--r-- | gcc/testsuite/g++.dg/ext/instantiate3.C | 4 |
4 files changed, 11 insertions, 8 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8015ae9..0f0c14a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,8 @@ 2002-03-31 Hans-Peter Nilsson <hp@bitrange.com> + * g++.dg/ext/instantiate1.C, g++.dg/ext/instantiate2.C, + g++.dg/ext/instantiate3.C: Tweak match patterns. + * g++.old-deja/g++.pt/static11.C: Skip on mmix-knuth-mmixware. * g++.dg/other/static11.C: Copy g++.old-deja/g++.pt/static11.C for -da test. diff --git a/gcc/testsuite/g++.dg/ext/instantiate1.C b/gcc/testsuite/g++.dg/ext/instantiate1.C index 04d7400..1d2a620 100644 --- a/gcc/testsuite/g++.dg/ext/instantiate1.C +++ b/gcc/testsuite/g++.dg/ext/instantiate1.C @@ -11,14 +11,14 @@ template <class T> struct A { template <class T> void A<T>::f () { } extern template struct A<int>; -// { dg-final { scan-assembler-not "\n_?_Z1fIiEvT_(:|\n)" } } +// { dg-final { scan-assembler-not "\n_?_Z1fIiEvT_(:|\n|\t)" } } void test_f_int () { f(42); } -// { dg-final { scan-assembler-not "\n_?_ZN1AIiE1fEv(:|\n)" } } +// { dg-final { scan-assembler-not "\n_?_ZN1AIiE1fEv(:|\n|\t)" } } void test_A_int_f () { A<int> a; a.f (); } -// { dg-final { scan-assembler "\n_?_Z1fIdEvT_(:|\n)" } } +// { dg-final { scan-assembler "\n_?_Z1fIdEvT_(:|\n|\t)" } } void test_f_double () { f (2.0); } -// { dg-final { scan-assembler "\n_?_ZN1AIdE1fEv(:|\n)" } } +// { dg-final { scan-assembler "\n_?_ZN1AIdE1fEv(:|\n|\t)" } } void test_A_double_f () { A<double> b; b.f (); } diff --git a/gcc/testsuite/g++.dg/ext/instantiate2.C b/gcc/testsuite/g++.dg/ext/instantiate2.C index c812dba..97ef45c 100644 --- a/gcc/testsuite/g++.dg/ext/instantiate2.C +++ b/gcc/testsuite/g++.dg/ext/instantiate2.C @@ -8,8 +8,8 @@ template <class T> struct A { template <class T> T A<T>::t = 0; static template struct A<int>; -// { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n)" } } +// { dg-final { scan-assembler "\n_?_ZN1AIiE1tE(:|\n|\t)" } } void test_int() { A<int>::t = 42; } -// { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n)" } } +// { dg-final { scan-assembler-not "\n_?_ZN1AIcE1tE(:|\n|\t)" } } void test_char() { A<char>::t = 42; } diff --git a/gcc/testsuite/g++.dg/ext/instantiate3.C b/gcc/testsuite/g++.dg/ext/instantiate3.C index c0f61fc..ea60d5b 100644 --- a/gcc/testsuite/g++.dg/ext/instantiate3.C +++ b/gcc/testsuite/g++.dg/ext/instantiate3.C @@ -7,8 +7,8 @@ template <class T> struct A { }; inline template struct A<int>; -// { dg-final { scan-assembler "\n_?_ZTV1AIiE(:|\n)" } } +// { dg-final { scan-assembler "\n_?_ZTV1AIiE(:|\n|\t)" } } A<int> a; -// { dg-final { scan-assembler-not "\n_?_ZTV1AIcE(:|\n)" } } +// { dg-final { scan-assembler-not "\n_?_ZTV1AIcE(:|\n|\t)" } } A<char> b; |
