xref: /llvm-project/clang/test/Sema/builtin-cpu-unsupports-AIX-Os.c (revision d4a25976df791aa2ba12e2dde69e644e0d9fe152)
1 // RUN: %clang_cc1 -fsyntax-only -triple  powerpc-ibm-aix7.1.0.0 -verify %s
2 
main(void)3 int main(void) {
4   if (__builtin_cpu_is("power8")) // expected-error {{this builtin is available only on AIX 7.2 and later operating systems}}
5     return 1;
6 
7   if (__builtin_cpu_supports("power8")) // expected-error {{this builtin is available only on AIX 7.2 and later operating systems}}
8     return 1;
9 }
10