* testsuite/g++.old-deja/g++.other/crash22.C: New test.
From-SVN: r35983
This commit is contained in:
parent
1f9124e42e
commit
22efd68702
2 changed files with 60 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2000-08-25 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* testsuite/g++.old-deja/g++.other/crash22.C: New test.
|
||||
|
||||
2000-08-24 Mark Mitchell <mark@codesourcery.com>
|
||||
|
||||
* gcc.dg/noncompile/930622-2.c: Adjust error message.
|
||||
|
|
56
gcc/testsuite/g++.old-deja/g++.other/crash22.C
Normal file
56
gcc/testsuite/g++.old-deja/g++.other/crash22.C
Normal file
|
@ -0,0 +1,56 @@
|
|||
// Build don't run:
|
||||
// Special g++ Options: -O2
|
||||
|
||||
class foo
|
||||
{
|
||||
};
|
||||
|
||||
typedef void *voidp;
|
||||
class vect : public foo
|
||||
{
|
||||
public:
|
||||
voidp& a();
|
||||
int b();
|
||||
};
|
||||
|
||||
class bar
|
||||
{
|
||||
public:
|
||||
bar *c(bool (*f)(bar *node), voidp g)
|
||||
{
|
||||
int i=0;
|
||||
bool j;
|
||||
while (i < d.b()){
|
||||
j = (f == __null) || f((bar*)d.a());
|
||||
if (j)
|
||||
((bar*)d.a())->c(f, g);
|
||||
i++;
|
||||
}
|
||||
return this;
|
||||
}
|
||||
public:
|
||||
vect d;
|
||||
bar *e(foo *k);
|
||||
};
|
||||
|
||||
bar *bar::e(foo *k)
|
||||
{
|
||||
return c(__null, k);
|
||||
}
|
||||
|
||||
voidp &vect::a()
|
||||
{
|
||||
static voidp x;
|
||||
return x;
|
||||
}
|
||||
|
||||
int vect::b()
|
||||
{
|
||||
static int x;
|
||||
return x;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Reference in a new issue