blob: b9b230e0fe1b40c186a7a651b43068b22db63ef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}
|