1 // RUN: %clangxx -O0 -g %s -o %t && %run %t 2>&1 | FileCheck %s
8 unsigned char key
[] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99};
10 mi_vector_hash(key
, __arraycount(key
), 0, hashes
);
11 for (size_t i
= 0; i
< __arraycount(hashes
); i
++)
12 printf("hashes[%zu]='%" PRIx32
"'\n", i
, hashes
[i
]);
14 // CHECK: hashes[0]='{{.*}}'
15 // CHECK: hashes[1]='{{.*}}'
16 // CHECK: hashes[2]='{{.*}}'