Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Sema / ppc-attr-target-inline.c
blob07ed006822658437bef3055d32e45cac807b914e
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc64le -target-feature +htm -fsyntax-only -emit-llvm %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;