This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / gcc.dg / smod-1.c
blob268b43bd2ab2835160cd434738fe8706e98261a1
1 /* PR middle-end/18045 */
2 /* Contributed by Eric Botcazou <ebotcazou@libertysurf.fr> */
4 /* { dg-do run } */
5 /* { dg-options "-std=c99" } */
6 /* { dg-options "-std=c99 -mtune=i486" { target i?86-*-* } } */
8 #include <limits.h>
10 extern void abort(void);
12 long long smod16(long long x)
14 return x % 16;
17 int main(void)
19 #if LLONG_MAX > 2147483647L
20 if (smod16 (0xFFFFFFFF) != 0xF)
21 abort ();
22 #endif
24 return 0;