blob: 614b44441415095c9ad039da44438fa2d157b43a (
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_mult_fr1x16 (0x7777, 0x0007);
if (t1 != 0x0006)
abort ();
return 0;
}
|