aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Oldham <oldham@codesourcery.com>2001-01-15 04:30:35 +0000
committerJeffrey D. Oldham <oldham@gcc.gnu.org>2001-01-15 04:30:35 +0000
commite5aed4e145dcdf60cb5d51a54ca7fa0d12d9e13a (patch)
tree7474651deaa5e83b1f4b3758102005c0d9a705dc
parente3406b2a3da33edcc5cfdcf86a95721ab9d810f7 (diff)
downloadgcc-e5aed4e145dcdf60cb5d51a54ca7fa0d12d9e13a.zip
gcc-e5aed4e145dcdf60cb5d51a54ca7fa0d12d9e13a.tar.gz
gcc-e5aed4e145dcdf60cb5d51a54ca7fa0d12d9e13a.tar.bz2
instantiate2.C: Add explanatory comment.
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
-rw-r--r--gcc/testsuite/ChangeLog5
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C2
-rw-r--r--gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C2
3 files changed, 9 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 544e49d..2ceb1ed 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C b/gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C
index 9e31bc8..0b3dc24 100644
--- a/gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C
+++ b/gcc/testsuite/g++.old-deja/g++.ext/instantiate2.C
@@ -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.
}
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C b/gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C
index c3c9875..92ad16d 100644
--- a/gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C
+++ b/gcc/testsuite/g++.old-deja/g++.ext/instantiate3.C
@@ -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 ()
{