[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / clang / test / Sema / ppc-attr-target-inline.c
blob6f84cf773f23a2b31aacf2ca1114ddea61520a79
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc64le -target-feature +htm -emit-llvm-only %s -verify
4 __attribute__((always_inline))
5 int test1(int *x) {
6 *x = __builtin_ttest();
7 return *x;
10 __attribute__((target("no-htm")))
11 int test2(int *x) {
12 *x = test1(x); // expected-error {{always_inline function 'test1' requires target feature 'htm', but would be inlined into function 'test2' that is compiled without support for 'htm'}}
13 return 0;