aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/simd-5.c
blob: 784d1fd86e090dcf6c949204cbed7f2ed6233187 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#define vector64 __attribute__((vector_size(8)))

int main(void){

 vector64 int  c;
vector64 int a = {1, -1};
vector64 int b = {2, -2};
c = -a + b*b*(-1LL);
/* c is now {-5, -3} */

 __builtin_printf("result is %llx\n", (long long)c); 
}