blob: 4cd9f17e65d3eeb0d9d28c0034e2441c36c9edcf [file] [log] [blame]
#define Pi 3.1415927f
struct __attribute__((scalar_storage_order("little-endian"))) R1
{
float F;
};
struct __attribute__((scalar_storage_order("big-endian"))) R2
{
float F;
};
struct R1 My_R1 = { Pi };
struct R2 My_R2 = { Pi };