* g++.dg/eh/loop1.C: New.

From-SVN: r48378
This commit is contained in:
Richard Henderson 2001-12-29 10:56:13 -08:00 committed by Richard Henderson
parent b7fe373bfb
commit c8af993772
2 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-12-29 Richard Henderson <rth@redhat.com>
* g++.dg/eh/loop1.C: New.
2001-12-29 Nathan Sidwell <nathan@codesourcery.com>
* g++.dg/template/crash1.C: New test.

View File

@ -0,0 +1,30 @@
// Verify that loop optimization takes into account the exception edge
// and does not increment I before the call.
// { dg-do run }
// { dg-options "-O2" }
extern "C" void abort();
static void bar(char *);
static void foo(unsigned long element_count, char *ptr)
{
unsigned long i;
try {
for (i = 0; i != element_count; i++, ptr += 8)
bar (ptr);
}
catch (...) {
if (i)
abort ();
}
}
static void bar(char *)
{
throw 1;
}
int main()
{
foo(2, 0);
}