OSDN Git Service

* gcc.target/sh/mfmovd.c: Extend list of supported targets.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.target / powerpc / spe-small-data-1.c
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
9 int main(void)
10 {
11   x = __ev_fsabs (x);
12   return(0);
13 }
14