mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-18 20:19:49 +08:00
instantiate2.C: XFAIL for HPUX too since its linker doesn't give line numbers either.
* g++.old-deja/g++.ext/instantiate2.C: XFAIL for HPUX too since its linker doesn't give line numbers either. * g++.old-deja/g++.ext/instantiate3.C: Similarly. From-SVN: r41597
This commit is contained in:
parent
03a5525282
commit
3da5d5c8d8
@ -1,3 +1,9 @@
|
||||
Thu Apr 26 11:15:12 2001 Jeffrey A Law (law@cygnus.com)
|
||||
|
||||
* g++.old-deja/g++.ext/instantiate2.C: XFAIL for HPUX too since
|
||||
its linker doesn't give line numbers either.
|
||||
* g++.old-deja/g++.ext/instantiate3.C: Similarly.
|
||||
|
||||
2001-04-26 Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
* g++.old-deja/g++.other/lex1.C: New test.
|
||||
|
@ -16,8 +16,9 @@ static template struct A<int>;
|
||||
|
||||
void test_int() { A<int>::t = 42; } // gets bogus error
|
||||
|
||||
void test_char() { A<char>::t = 42; } // ERROR - not instantiated XFAIL *-*-irix*
|
||||
void test_char() { A<char>::t = 42; } // ERROR - not instantiated XFAIL *-*-irix* *-*-hpux*
|
||||
// Irix's default linker does not produce line numbers so XFAIL it.
|
||||
// Similarly for HP's linker
|
||||
|
||||
int main ()
|
||||
{
|
||||
|
@ -10,9 +10,10 @@ template <class T> struct A {
|
||||
inline template struct A<int>;
|
||||
|
||||
A<int> a; // gets bogus error
|
||||
A<char> b; // ERROR - not instantiated XFAIL mips*-*-*
|
||||
A<char> b; // ERROR - not instantiated XFAIL mips*-*-* *-*-hpux*
|
||||
// Irix's default linker does not
|
||||
// produce line numbers so XFAIL it.
|
||||
// Similarly for HPUX.
|
||||
|
||||
int main ()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user