[PR81647][AARCH64] Fix handling of Unordered Comparisons in aarch64-simd.md
[official-gcc.git] / gcc / testsuite / gcc.target / aarch64 / unsigned-float.c
blobc5ad6805d94cf079be437979e8171a7f01594e6a
1 /* { dg-do compile } */
2 /* { dg-options "-O1" } */
4 #include <stdint.h>
6 double
7 f1 (uint16_t x)
9 return (double)(float)x;
12 float
13 f2 (uint16_t x)
15 return (float)(double)x;
18 /* { dg-final { scan-assembler-not "fcvt" } } */