diff options
Diffstat (limited to 'clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp')
-rw-r--r-- | clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp b/clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp index 1921c06e5af..26e37949308 100644 --- a/clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp +++ b/clang/test/CodeGenCoroutines/microsoft-abi-operator-coawait.cpp @@ -17,9 +17,9 @@ no_suspend operator co_await(B const&) { return {}; } extern "C" void f() { A a; B b; - // CHECK: call void @"\01??__LA@@QEAA?AUno_suspend@@XZ"( + // CHECK: call void @"??__LA@@QEAA?AUno_suspend@@XZ"( a.operator co_await(); - // CHECK-NEXT: call i8 @"\01??__L@YA?AUno_suspend@@AEBUB@@@Z"( + // CHECK-NEXT: call i8 @"??__L@YA?AUno_suspend@@AEBUB@@@Z"( operator co_await(b); } |