blob: 1d364b28a55f64b607819b0973046e7fb5d1e0ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
extern void abort (void);
typedef short fract16;
int main ()
{
fract16 t1;
t1 = __builtin_bfin_max_fr1x16 (0x7777, 0x7000);
if (t1 != 0x7777)
abort ();
return 0;
}
|