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 
main(void)9 int main(void)
10 {
11   x = __ev_fsabs (x);
12   return(0);
13 }
14 
15