PR libstdc++/84769 qualify std::get and std::get_if to avoid ADL
[official-gcc.git] / libgcc / config / msp430 / floatunhidf.c
bloba02a953d54fbbb6a92f3d692c5fcc4b69dbcefb8
1 /* Public domain. */
2 typedef int HItype __attribute__ ((mode (HI)));
3 typedef unsigned int UHItype __attribute__ ((mode (HI)));
4 typedef float DFtype __attribute__ ((mode (DF)));
6 extern DFtype __floatunsidf (unsigned long);
8 DFtype __floatunhidf (UHItype);
10 DFtype
11 __floatunhidf (UHItype u)
13 return __floatunsidf ((unsigned long)u);