OSDN Git Service

2001-01-14 Jeffrey Oldham <oldham@codesourcery.com>
authoroldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Jan 2001 04:30:35 +0000 (04:30 +0000)
committeroldham <oldham@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 15 Jan 2001 04:30:35 +0000 (04:30 +0000)
* g++.old-deja/g++.ext/instantiate2.C: Add explanatory comment.
* g++.old-deja/g++.ext/instantiate3.C: Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@39027 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 544e49d..2ceb1ed 100644 (file)
@@ -1,5 +1,10 @@
 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
        message containing "init_priority".
        (conpr-2.C): Likewise.
index 9e31bc8..0b3dc24 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 c3c9875..92ad16d 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 ()
 {