instantiate2.C: ERROR line should fail for mips.
authorJeffrey D. Oldham <oldham@gcc.gnu.org>
Wed, 10 Jan 2001 00:49:22 +0000 (00:49 +0000)
committerJeffrey D. Oldham <oldham@gcc.gnu.org>
Wed, 10 Jan 2001 00:49:22 +0000 (00:49 +0000)
2001-01-09  Jeffrey Oldham  <oldham@codesourcery.com>

* g++.old-deja/g++.ext/instantiate2.C: ERROR line should fail for
mips.
* g++.old-deja/g++.ext/instantiate3.C: Likewise.

From-SVN: r38844

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C
gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C

index c47778d31f9e5ca4e37f6286fca021d6ddf92e86..8c43e6ce5a8ffbc02682fedc722c45a73cdfd45a 100644 (file)
@@ -1,3 +1,9 @@
+2001-01-09  Jeffrey Oldham  <oldham@codesourcery.com>
+
+       * g++.old-deja/g++.ext/instantiate2.C: ERROR line should fail for
+       mips.
+       * g++.old-deja/g++.ext/instantiate3.C: Likewise.
+
 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.old_deja/g++.pt/using8.C: New test.
        * gcc.dg/format-xopen-1.c: Rename to gcc.dg/format/xopen-1.c.
        * gcc.dg/formatz-1.c: Rename to gcc.dg/format/z-1.c.
 
+>>>>>>> 1.986
 2001-01-05  Alexandre Oliva  <aoliva@redhat.com>
 
        * gcc.c-torture/execute/991228-1.c: Take word endianness into
 
        * g++.old-deja/g++.pt/crash62.C: New test.
 
+>>>>>>> 1.973
 2001-01-04  Richard Henderson  <rth@redhat.com>
 
        * gcc.dg/20000926-1.c: Update expected warnings.
index 05c3e20286474ec56b94982bb974c7dd902bb85a..9e31bc8993be17a65f45daf503d6e8ee7333921a 100644 (file)
@@ -13,5 +13,5 @@ static template struct A<int>;
 int main ()
 {
   A<int>::t = 42;              // gets bogus error
-  A<char>::t = 42;             // ERROR - not instantiated
+  A<char>::t = 42;             // ERROR - not instantiated XFAIL mips*-*-*
 }
index 7d710c4ba2145296c190754fe3efc7d18bf6a575..c3c98756403b8977ac143aa7c182fee1ee50089e 100644 (file)
@@ -10,7 +10,7 @@ template <class T> struct A {
 inline template struct A<int>;
 
 A<int> a;                      // gets bogus error
-A<char> b;                     // ERROR - not instantiated
+A<char> b;                     // ERROR - not instantiated XFAIL mips*-*-*
 
 int main ()
 {