Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / simd-5.c
blob016cccd1e9faee96150d40855ca4aee190145c24
1 #define vector64 __attribute__((vector_size(8)))
3 main(){
5 vector64 int c;
6 vector64 int a = {1, -1};
7 vector64 int b = {2, -2};
8 c = -a + b*b*(-1LL);
9 /* c is now {5, 3} */
11 printf("result is %llx\n", (long long)c);