blob: 27d41a3dd4a64e2c564c4e7c3a2427517b8870ac [file] [log] [blame]
#include <stdio.h>
union { unsigned __l; float __d; } GlobalUnion = { 0x70c00000U };
int main() {
union { unsigned __l; float __d; } LocalUnion = { 0x7fc00000U };
printf("%f %f\n", GlobalUnion.__d, LocalUnion.__d);
return 0;
}