blob: d1e836fa028a46ecbda2a195dfc467bb31601bdf (
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
|
/* PR c/19606
The C front end used to shorten the type of a division to a type
that does not preserve the semantics of the original computation.
Make sure that won't happen. */
signed char a = -4;
int
foo (void)
{
return ((unsigned int) (signed int) a) / 2LL;
}
int
bar (void)
{
return ((unsigned int) (signed int) a) % 5LL;
}
int
main (void)
{
int r;
r = foo ();
if (r != ((unsigned int) (signed int) (signed char) -4) / 2LL)
abort ();
r = bar ();
if (r != ((unsigned int) (signed int) (signed char) -4) % 5LL)
abort ();
exit (0);
}
|