bd52d17906
too large to list, but see: http://gcc.gnu.org/gcc-3.4/changes.html http://gcc.gnu.org/gcc-4.0/changes.html http://gcc.gnu.org/gcc-4.1/changes.html for the details.
12 lines
222 B
C
12 lines
222 B
C
/* { dg-do compile } */
|
|
#include <altivec.h>
|
|
vector float
|
|
f(int i)
|
|
{
|
|
switch (i) {
|
|
case 0:
|
|
return (vector float)(((vector unsigned char){3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3}));
|
|
}
|
|
return ((vector float){0,0,0,0});
|
|
}
|