blob: b34d77e9956c968b5c9aadd137ed36c4477da488 (
plain) (
blame)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*
20011126-2.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* Problem originally visible on ia64.
There is a partial redundancy of "in + 1" that makes GCSE want to
transform the final while loop to
p = in + 1;
tmp = p;
...
goto start;
top:
tmp = tmp + 1;
start:
in = tmp;
if (in < p) goto top;
We miscalculate the number of loop iterations as (p - tmp) = 0
instead of (p - in) = 1, which results in overflow in the doloop
optimization. */
static const char *
test (const char *in, char *out)
{
while (1)
{
if (*in == 'a')
{
const char *p = in + 1;
while (*p == 'x')
++p;
if (*p == 'b')
return p;
while (in < p)
*out++ = *in++;
}
}
}
void
testTortureExecute (void)
{
char out[4];
test ("aab", out);
return;
}
|