OSDN Git Service

* g++.dg/ext/instantiate1.C, g++.dg/ext/instantiate2.C,
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 31 Mar 2002 16:29:04 +0000 (16:29 +0000)
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>
Sun, 31 Mar 2002 16:29:04 +0000 (16:29 +0000)
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

gcc/testsuite/ChangeLog
gcc/testsuite/g++.dg/ext/instantiate1.C
gcc/testsuite/g++.dg/ext/instantiate2.C
gcc/testsuite/g++.dg/ext/instantiate3.C

index 8015ae9..0f0c14a 100644 (file)
@@ -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.
index 04d7400..1d2a620 100644 (file)
@@ -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 (); }
index c812dba..97ef45c 100644 (file)
@@ -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; }
index c0f61fc..ea60d5b 100644 (file)
@@ -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;