instantiate2.C: Add explanatory comment.
authorJeffrey Oldham <oldham@codesourcery.com>
Mon, 15 Jan 2001 04:30:35 +0000 (04:30 +0000)
committerJeffrey D. Oldham <oldham@gcc.gnu.org>
Mon, 15 Jan 2001 04:30:35 +0000 (04:30 +0000)
2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>

* g++.old-deja/g++.ext/instantiate2.C: Add explanatory comment.
* g++.old-deja/g++.ext/instantiate3.C: Likewise.

From-SVN: r39027

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

index 544e49d984220a15e8e2fc0a8734affe7f5bad71..2ceb1eda71e9cc64c3eb47f3185313384a7d3518 100644 (file)
@@ -1,3 +1,8 @@
+2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
+
+       * g++.old-deja/g++.ext/instantiate2.C: Add explanatory comment.
+       * g++.old-deja/g++.ext/instantiate3.C: Likewise.
+
 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
 
        * g++.dg/special/ecos.exp (conpr-1.C): XFAIL if compile emits
index 9e31bc8993be17a65f45daf503d6e8ee7333921a..0b3dc24ea4c487e56c0196206a96e5d053296bbd 100644 (file)
@@ -14,4 +14,6 @@ int main ()
 {
   A<int>::t = 42;              // gets bogus error
   A<char>::t = 42;             // ERROR - not instantiated XFAIL mips*-*-*
+                               // Irix's default linker does not
+                               // produce line numbers so XFAIL it.
 }
index c3c98756403b8977ac143aa7c182fee1ee50089e..92ad16dfd4517c1fecae7d166a53bb8cd71e2a87 100644 (file)
@@ -11,6 +11,8 @@ inline template struct A<int>;
 
 A<int> a;                      // gets bogus error
 A<char> b;                     // ERROR - not instantiated XFAIL mips*-*-*
+                               // Irix's default linker does not
+                               // produce line numbers so XFAIL it.
 
 int main ()
 {