crash36.C: Update error lines.
authorRichard Henderson <rth@redhat.com>
Wed, 20 Dec 2000 22:01:05 +0000 (14:01 -0800)
committerRichard Henderson <rth@gcc.gnu.org>
Wed, 20 Dec 2000 22:01:05 +0000 (14:01 -0800)
        * g++.old-deja/g++.pt/crash36.C: Update error lines.
        * g++.old-deja/g++.robertl/eb109.C: Likewise.

From-SVN: r38407

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.pt/crash36.C
gcc/testsuite/g++.old-deja/g++.robertl/eb109.C

index 06c54bc3d1f9f3369f02d9de29da2f3e9209b512..1dcc6db7dd382c96036012b69c519aca1903689c 100644 (file)
@@ -1,3 +1,8 @@
+2000-12-20  Richard Henderson  <rth@redhat.com>
+
+       * g++.old-deja/g++.pt/crash36.C: Update error lines.
+       * g++.old-deja/g++.robertl/eb109.C: Likewise.
+
 2000-12-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
 
        * gcc.dg/compare3.c: New test.
index b5281c32b6121195f5e1baaf66ebd55d0edbed20..ef507a4ec4b3c37eb1daaa81820ccfc4f9d9c5dd 100644 (file)
@@ -28,8 +28,8 @@ struct list {
   };
   
   reverse_iterator<list_iterator<T> > rbegin()
-    { return reverse_iterator<list_iterator<T> > // ERROR - no type
-       (list_iterator<T>(Head->next())); } // ERROR - instantiated here
+    { return reverse_iterator<list_iterator<T> > // ERROR - no type|instantiated here
+       (list_iterator<T>(Head->next())); }
 };
 
 template class list<int>; // ERROR - instantiated from here
index 7d624eae14d1bdd619f07b9faf089e52747082c9..b87be9c1ae96b2efc01388a24e65e08523a6c59d 100644 (file)
@@ -50,8 +50,8 @@ ostream& operator<<(ostream& os, Graph<VertexType,EdgeType>& G)
 
         while(startN != endN)
         {
-            os << G[(*startN).first].first << ' ' // vertex
-               << (*startN).second << ' ';        // ERROR - no index operator
+            os << G[(*startN).first].first << ' ' // ERROR - no index operator
+               << (*startN).second << ' ';
             ++startN;
         }
         os << ">\n";