From 22efd68702b68b1f7577b1d96867ebb550dd1c5b Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Fri, 25 Aug 2000 14:55:47 +0200 Subject: [PATCH] * testsuite/g++.old-deja/g++.other/crash22.C: New test. From-SVN: r35983 --- gcc/testsuite/ChangeLog | 4 ++ .../g++.old-deja/g++.other/crash22.C | 56 +++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 gcc/testsuite/g++.old-deja/g++.other/crash22.C diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 0ce3b7fcefe..99afdaf7eaa 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2000-08-25 Jakub Jelinek + + * testsuite/g++.old-deja/g++.other/crash22.C: New test. + 2000-08-24 Mark Mitchell * gcc.dg/noncompile/930622-2.c: Adjust error message. diff --git a/gcc/testsuite/g++.old-deja/g++.other/crash22.C b/gcc/testsuite/g++.old-deja/g++.other/crash22.C new file mode 100644 index 00000000000..89f35f32fe5 --- /dev/null +++ b/gcc/testsuite/g++.old-deja/g++.other/crash22.C @@ -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; +} -- 2.30.2