blob: 795befc4bd06167b68e553f37450b08781118f6e (
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
|
/*
20021204-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#pragma disable_warning 196
#endif
/* This test was miscompiled when using sibling call optimization,
because X ? Y : Y - 1 optimization changed X into !X in place
and haven't reverted it if do_store_flag was successful, so
when expanding the expression the second time it was
!X ? Y : Y - 1. */
void foo (int x)
{
if (x != 1)
ASSERT (0);
}
int z;
void testTortureExecute (void)
{
char *a = "test";
char *b = a + 2;
foo (z > 0 ? b - a : b - a - 1);
return;
}
|