Fixed test in rL243305

llvm-svn: 243314
This commit is contained in:
Simon Pilgrim 2015-07-27 19:49:54 +00:00
parent 7c52e0527d
commit 917c4d41ea
1 changed files with 3 additions and 3 deletions

View File

@ -7,12 +7,12 @@
void test_m_prefetch(void *p) { void test_m_prefetch(void *p) {
return _m_prefetch(p); return _m_prefetch(p);
// CHECK-LABEL: define void @test_m_prefetch // CHECK-LABEL: define void @test_m_prefetch
// CHECK: call void @llvm.prefetch({{.*}}, i32 0, i32 3, i32 1) // CHECK: call void @llvm.prefetch({{.*}}, i32 0, i32 3, i32 1)
} }
void test_m_prefetch_w(void *p) { void test_m_prefetch_w(void *p) {
return _m_prefetchw(p); return _m_prefetchw(p);
// CHECK-LABEL: define void : @test_m_prefetch_w // CHECK-LABEL: define void @test_m_prefetch_w
// CHECK: call void @llvm.prefetch({{.*}}, i32 1, i32 3, i32 1) // CHECK: call void @llvm.prefetch({{.*}}, i32 1, i32 3, i32 1)
} }