xref: /llvm-project/clang/test/CodeGen/PowerPC/builtins-ppc-pwr10-64bit.c (revision fa1f88cdeca245497843c507167b84f5522e88cc)
1 // REQUIRES: powerpc-registered-target
2 // RUN: %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm %s \
3 // RUN:   -target-cpu pwr10 -o - | FileCheck %s
4 // RUN: %clang_cc1 -triple powerpc64le-unknown-linux-gnu -emit-llvm %s \
5 // RUN:   -target-cpu pwr10 -o - | FileCheck %s
6 // RUN: %clang_cc1 -triple powerpc64-unknown-aix -emit-llvm %s \
7 // RUN:   -target-cpu pwr10 -o - | FileCheck %s
8 // RUN: not %clang_cc1 -triple powerpc-unknown-aix -emit-llvm-only %s \
9 // RUN:   -target-cpu pwr8 2>&1 | FileCheck %s --check-prefix=CHECK-32-ERROR
10 // RUN: not %clang_cc1 -triple powerpc-unknown-linux-gnu -emit-llvm-only %s \
11 // RUN:   -target-cpu pwr9 2>&1 | FileCheck %s --check-prefix=CHECK-32-ERROR
12 // RUN: not %clang_cc1 -triple powerpc64-unknown-aix -emit-llvm-only %s \
13 // RUN:   -target-cpu pwr9 2>&1 | FileCheck %s --check-prefix=CHECK-NONPWR10-ERR
14 // RUN: not %clang_cc1 -triple powerpc64-unknown-linux-gnu -emit-llvm-only %s \
15 // RUN:   -target-cpu pwr8 2>&1 | FileCheck %s --check-prefix=CHECK-NONPWR10-ERR
16 
17 extern unsigned long long ull;
18 
test_xlcompat()19 void test_xlcompat() {
20   // CHECK-LABEL: @test_xlcompat(
21   // CHECK: %2 = call i64 @llvm.ppc.pextd(i64 %0, i64 %1)
22   // CHECK-32-ERROR: error: this builtin is only available on 64-bit targets
23   // CHECK-NONPWR10-ERR: error: '__builtin_pextd' needs target feature isa-v31-instructions
24   ull = __builtin_pextd(ull, ull);
25 
26   // CHECK: %5 = call i64 @llvm.ppc.pdepd(i64 %3, i64 %4)
27   // CHECK-32-ERROR: error: this builtin is only available on 64-bit targets
28   // CHECK-NONPWR10-ERR: error: '__builtin_pdepd' needs target feature isa-v31-instructions
29   ull = __builtin_pdepd(ull, ull);
30 }
31