blob: ec9c9e6eae4dac2c909bf8c4176fb5df1bd23c3e (
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
31
32
33
34
|
/* This code shows up in worse_state in ipa-pure-const.cc:
*looping = MAX (*looping, looping2);
was miscompiling it as just `return 1` though instead of
`MAX_EXPR<*a, b>` (which should be transformed into `*a | b`
note MAX_EXPR<bool, bool> is really `bool | bool` so we
use that to compare against here.
*/
#define bool _Bool
bool __attribute__((noipa)) f(bool *a, bool b)
{
bool t = *a;
if (t <= b)
return b;
return t;
}
bool __attribute__((noipa)) f1(bool *a, bool b)
{
return *a | b;
}
int main()
{
int i = 0;
int j = 0;
for (i = 0; i <= 1; i++)
for (j = 0; j <= 1; j++)
{
bool a = i;
if (f(&a, j) != f1(&a, j))
__builtin_abort();
}
return 0;
}
|