blob: 49b61f678c48763b9b141767dc575cb56943f011 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* { dg-do run } */
/* { dg-require-effective-target f16c } */
/* { dg-options "-O2 -mf16c" } */
#include "f16c-check.h"
static void
f16c_test (void)
{
unsigned short val = 0xc000;
float exp = -2;
float res;
res = _cvtsh_ss (val);
if (res != exp)
abort ();
}
|