Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / PowerPC / builtins-ppc-xlcompat-prefetch.c
blobba8b770cd6e1d41780df217dc90c6f90a7ca35ce
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
10 extern void *vpa;
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)
16 // CHECK: ret void
17 __dcbtstt(vpa);
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)
24 // CHECK: ret void
25 __dcbtt(vpa);