Skip to content

Commit 34a531d

Browse files
add OGCG label
1 parent fd000c8 commit 34a531d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

clang/test/CIR/CodeGen/X86/sse-builtins.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ void test_mm_sfence(void) {
3030
void test_mm_prefetch(char const* p) {
3131
// CIR-LABEL: test_mm_prefetch
3232
// LLVM-LABEL: test_mm_prefetch
33+
// OGCG-LABEL: test_mm_prefetch
3334
_mm_prefetch(p, 0);
3435
// CIR: cir.prefetch read locality(0) %{{.*}} : !cir.ptr<!void>
3536
// LLVM: call void @llvm.prefetch.p0(ptr {{.*}}, i32 0, i32 0, i32 1)
@@ -39,6 +40,7 @@ void test_mm_prefetch(char const* p) {
3940
void test_mm_prefetch_local(char const* p) {
4041
// CIR-LABEL: test_mm_prefetch_local
4142
// LLVM-LABEL: test_mm_prefetch_local
43+
// OGCG-LABEL: test_mm_prefetch_local
4244
_mm_prefetch(p, 3);
4345
// CIR: cir.prefetch read locality(3) %{{.*}} : !cir.ptr<!void>
4446
// LLVM: call void @llvm.prefetch.p0(ptr {{.*}}, i32 0, i32 3, i32 1)
@@ -48,6 +50,7 @@ void test_mm_prefetch_local(char const* p) {
4850
void test_mm_prefetch_write(char const* p) {
4951
// CIR-LABEL: test_mm_prefetch_write
5052
// LLVM-LABEL: test_mm_prefetch_write
53+
// OGCG-LABEL: test_mm_prefetch_write
5154
_mm_prefetch(p, 7);
5255
// CIR: cir.prefetch write locality(3) %{{.*}} : !cir.ptr<!void>
5356
// LLVM: call void @llvm.prefetch.p0(ptr {{.*}}, i32 1, i32 3, i32 1)

0 commit comments

Comments
 (0)