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
17 extern unsigned long long ull
;
19 unsigned long long test_builtin_pextd() {
20 // CHECK-LABEL: @test_builtin_pextd(
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: this builtin is only valid on POWER10 or later CPUs
24 return __builtin_pextd(ull
, ull
);
27 unsigned long long test_builtin_pdepd() {
28 // CHECK-LABEL: @test_builtin_pdepd(
29 // CHECK: %2 = call i64 @llvm.ppc.pdepd(i64 %0, i64 %1)
30 // CHECK-32-ERROR: error: this builtin is only available on 64-bit targets
31 // CHECK-NONPWR10-ERR: error: this builtin is only valid on POWER10 or later CPUs
32 return __builtin_pdepd(ull
, ull
);