diff --git a/clang/test/CodeGenSYCL/remove-restriction-builtin-printf.cpp b/clang/test/CodeGenSYCL/remove-restriction-builtin-printf.cpp index 45afece4f7df1..307def146b3bf 100644 --- a/clang/test/CodeGenSYCL/remove-restriction-builtin-printf.cpp +++ b/clang/test/CodeGenSYCL/remove-restriction-builtin-printf.cpp @@ -10,7 +10,7 @@ int main() { q.submit([&](handler &h) { // CHECK: define {{.*}}spir_kernel {{.*}} h.single_task([=]() { - // CHECK: printf(ptr noundef nonnull dereferenceable(1) @.str, i32 noundef 24) + // CHECK: call {{.*}}printf(ptr noundef nonnull dereferenceable(1) @{{.*}}, i32 noundef 24) __builtin_printf("hello, %d\n", 24); }); });