blob: d7d1bc198dac90007b4354ef435074ee8c852e52 (
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
35
36
|
/*
20120207-1.c from the execute part of the gcc torture suite.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
/* PR middle-end/51994 */
/* Testcase by Uros Bizjak <ubizjak@gmail.com> */
extern char *strcpy (char *, const char *);
char
test (int a)
{
char buf[16];
char *output = buf;
strcpy (&buf[0], "0123456789");
output += a;
output -= 1;
return output[0];
}
void
testTortureExecute (void)
{
if (test (2) != '1')
ASSERT (0);
}
|