aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/k1_builtins/sbmm8.c
blob: dba7a72b085a140b163f317af643d4fb9afa77f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main() {
  {
    unsigned long a = 0x12345678ABCDEFUL, b=0x12345118ABCD32UL, c;
    c = __builtin_kvx_sbmm8(a, b);
    printf("%lx\n", c);
  }
  {
    unsigned long a = 0x0102040810204080UL, b=0x12345118ABCD32UL, c;
    c = __builtin_kvx_sbmm8(a, b);
    printf("%lx\n", c);
  }
  return 0;
}