diff options
Diffstat (limited to 'test/CodeGenCoroutines/coro-promise-dtor.cpp')
-rw-r--r-- | test/CodeGenCoroutines/coro-promise-dtor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGenCoroutines/coro-promise-dtor.cpp b/test/CodeGenCoroutines/coro-promise-dtor.cpp index 4142cebe6132f..bc190c9d1cb52 100644 --- a/test/CodeGenCoroutines/coro-promise-dtor.cpp +++ b/test/CodeGenCoroutines/coro-promise-dtor.cpp @@ -28,12 +28,12 @@ coro_t f() { co_return; } -// CHECK-LABEL: define void @"\01?f@@YA?AUcoro_t@@XZ"( +// CHECK-LABEL: define dso_local void @"?f@@YA?AUcoro_t@@XZ"( // CHECK: %gro.active = alloca i1 // CHECK: store i1 false, i1* %gro.active -// CHECK: invoke %"struct.coro_t::promise_type"* @"\01??0promise_type@coro_t@@QEAA@XZ"( -// CHECK: invoke void @"\01?get_return_object@promise_type@coro_t@@QEAA?AU2@XZ"( +// CHECK: invoke %"struct.coro_t::promise_type"* @"??0promise_type@coro_t@@QEAA@XZ"( +// CHECK: invoke void @"?get_return_object@promise_type@coro_t@@QEAA?AU2@XZ"( // CHECK: store i1 true, i1* %gro.active // CHECK: %[[IS_ACTIVE:.+]] = load i1, i1* %gro.active @@ -44,4 +44,4 @@ coro_t f() { // CHECK: br i1 %[[NRVO]], label %{{.+}}, label %[[DTOR:.+]] // CHECK: [[DTOR]]: -// CHECK: call void @"\01??_Dcoro_t@@QEAAXXZ"( +// CHECK: call void @"??1coro_t@@QEAA@XZ"( |