brintos

brintos / llvm-project-archived public Read only

0
0
Text · 378 B · 4b18357 Raw
9 lines · c
1// REQUIRES: systemz-registered-target2// RUN: %clang_cc1 -triple s390x-ibm-linux -emit-llvm-only %s -verify3 4__int128 f0(__int128 a, __int128 b) {5  __builtin_tbegin ((void *)0);    // expected-error {{'__builtin_tbegin' needs target feature transactional-execution}}6  return __builtin_s390_vaq(a, b); // expected-error {{'__builtin_s390_vaq' needs target feature vector}}7}8 9