blob: fc5bc1fcbbf546c60671999634abbd107f610786 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* { dg-do run } */
/* { dg-options "-std=gnu99 -O0" } */
/* C99 6.3 Conversions.
Check conversions involving fixed-point. */
extern void abort (void);
#include "convert.h"
int main ()
{
ALL_CONV (unsigned short _Fract, uhr);
ALL_CONV (unsigned _Fract, ur);
ALL_CONV (unsigned long _Fract, ulr);
ALL_CONV (unsigned long long _Fract, ullr);
return 0;
}
|