blob: bf740cd7736c261a25f1056680d8216da54a956f (
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
|
/*
floatunsisf-1.c from the execute part of the gcc torture tests.
*/
#include <testfwk.h>
/* The fp-bit.c function __floatunsisf had a latent bug where guard bits
could be lost leading to incorrect rounding. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
#if __INT_MAX__ >= 0x7fffffff
volatile unsigned u = 0x80000081;
#else
volatile unsigned long u = 0x80000081;
#endif
volatile float f1, f2;
void
testTortureExecute (void)
{
#ifndef __SDCC_pdk14
f1 = (float) u;
f2 = (float) 0x80000081;
if (f1 != f2)
ASSERT (0);
return;
#endif
}
|