@@ -30,6 +30,7 @@ void test_mm_sfence(void) {
3030void 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) {
3940void 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) {
4850void 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