Skip to content

Commit 96d1178

Browse files
committed
[lldb][test] Fix expected mangling for AsmLabel_CtorDtor test on Windows (again)
1 parent c129d65 commit 96d1178

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
@@ -1170,7 +1170,7 @@ TEST_F(TestTypeSystemClang, AsmLabel_CtorDtor) {
11701170
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
11711171
"??0S@@QEAA@XZ");
11721172
EXPECT_STREQ(m_ast->DeclGetMangledName(dtor_nolabel).GetCString(),
1173-
"??1S@@QEAA@XZ");
1173+
"??_DS@@QEAAXXZ");
11741174
#else
11751175
EXPECT_STREQ(m_ast->DeclGetMangledName(ctor_nolabel).GetCString(),
11761176
"_ZN1SC1Ev");

0 commit comments

Comments
 (0)