blob: 9c223eaa710c2cce00703dc537d0a8129b613342 (
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
|
/*
pr78586.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
#ifdef __SDCC
#pragma std_c99
#endif
#include <stdio.h>
/* PR tree-optimization/78586 */
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lackof memory
void
foo (unsigned long x)
{
char a[30];
unsigned long b = sprintf (a, "%lu", x);
if (b != 4)
ASSERT (0);
}
#endif
void
testTortureExecute (void)
{
#if !defined(__SDCC_pdk14) && !defined(__SDCC_pdk15) // Lackof memory
foo (1000);
return;
#endif
}
|