1  struct __attribute__((scalar_storage_order("little-endian"))) R1
       2  {
       3    int I;
       4  };
       5  
       6  struct __attribute__((scalar_storage_order("big-endian"))) R2
       7  {
       8    int I;
       9  };
      10  
      11  struct R1 My_R1 = { 0x12345678 };
      12  struct R2 My_R2 = { 0x12345678 };