diff options
| author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-31 16:29:04 +0000 |
|---|---|---|
| committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-03-31 16:29:04 +0000 |
| commit | bcf8de356ce885bee01629a413fbed92bdb203c6 (patch) | |
| tree | 0be5836e3ff10ea1d46b495f4792d7911cbdd347 | |
| parent | e731c8a82b336311b7ea52cbc06a7d046daa97a7 (diff) | |
| download | ppe42-gcc-bcf8de356ce885bee01629a413fbed92bdb203c6.tar.gz ppe42-gcc-bcf8de356ce885bee01629a413fbed92bdb203c6.zip | |
* g++.dg/ext/instantiate1.C, g++.dg/ext/instantiate2.C,
g++.dg/ext/instantiate3.C: Tweak match patterns.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@51657 138bc75d-0d04-0410-961f-82ee72b054a4
| -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 8015ae97930..0f0c14a5fca 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 04d740029cc..1d2a6200b0a 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 c812dba85db..97ef45c874d 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 c0f61fcef97..ea60d5bf98c 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; |

