2001-01-09 Jeffrey Oldham <oldham@codesourcery.com>
authoroldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 Jan 2001 00:49:22 +0000 (00:49 +0000)
committeroldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 10 Jan 2001 00:49:22 +0000 (00:49 +0000)
* g++.old-deja/g++.ext/instantiate2.C: ERROR line should fail for
mips.
* g++.old-deja/g++.ext/instantiate3.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38844 138bc75d-0d04-0410-961f-82ee72b054a4

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

index c47778d..8c43e6c 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 05c3e20..9e31bc8 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 7d710c4..c3c9875 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 ()
 {