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