1/* { dg-do compile } */
2/* { dg-options "-mcpu=8540 -mspe -mabi=spe -mfloat-gprs=single -O0" } */
3/* { dg-skip-if "not an SPE target" { ! powerpc_spe_nocache } { "*" } { "" } } */
4
5/* (Test with -O0 so we don't optimize any of them away).  */
6
7
8typedef float __attribute__((vector_size(8))) __ev64_fs__;
9
10__ev64_opaque__ Foo (void);
11
12void Bar ()
13{
14  __ev64_fs__ fs = Foo ();
15}
16