Skip to content

Commit c30b5a5

Browse files
committed
[lldb][test] Fix expected mangling for AsmLabel_CtorDtor test on Windows (again)
(cherry picked from commit 96d1178)
1 parent b2fbf94 commit c30b5a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/unittests/Symbol/TestTypeSystemClang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1168,7 +1168,7 @@ TEST_F(TestTypeSystemClang, AsmLabel_CtorDtor) {
11681168
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
11691169
"??0S@@QEAA@XZ");
11701170
EXPECT_STREQ(m_ast->DeclGetMangledName(dtor_nolabel).GetCString(),
1171-
"??1S@@QEAA@XZ");
1171+
"??_DS@@QEAAXXZ");
11721172
#else
11731173
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
11741174
"_ZN1SC1Ev");

0 commit comments

Comments
 (0)