1 // RUN: %clang_cc1 -O2 -triple powerpc64-unknown-linux-gnu \
2 // RUN: -emit-llvm %s -o - -target-cpu pwr7 | FileCheck %s
3 // RUN: %clang_cc1 -O2 -triple powerpc64le-unknown-linux-gnu \
4 // RUN: -emit-llvm %s -o - -target-cpu pwr8 | FileCheck %s
5 // RUN: %clang_cc1 -O2 -triple powerpc-unknown-aix \
6 // RUN: -emit-llvm %s -o - -target-cpu pwr7 | FileCheck %s
7 // RUN: %clang_cc1 -O2 -triple powerpc64-unknown-aix \
8 // RUN: -emit-llvm %s -o - -target-cpu pwr7 | FileCheck %s
12 void test_dcbtstt(void) {
13 // CHECK-LABEL: @test_dcbtstt
14 // CHECK: %0 = load ptr, ptr @vpa
15 // CHECK: tail call void @llvm.ppc.dcbtstt(ptr %0)
20 void test_dcbtt(void) {
21 // CHECK-LABEL: @test_dcbt
22 // CHECK: %0 = load ptr, ptr @vpa
23 // CHECK: tail call void @llvm.ppc.dcbtt(ptr %0)