1/* Verify that we don't ICE trying to put float data in .sdata2.  */
2/* { dg-do run { target { powerpc*-*-linux* && powerpc_spe } } } */
3/* { dg-options "-msdata=eabi -mcall-eabi -G 8" } */
4
5double x;
6
7int main(void)
8{
9  x = x * 2;
10  return(0);
11}
12
13