Skip to content

Commit a52db68

Browse files
authored
Remove SymbolStringPtr deref in debugging output.
1 parent c9c9286 commit a52db68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/unittests/ExecutionEngine/Orc/ObjectLinkingLayerTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ TEST(ObjectLinkingLayerSearchGeneratorTest, AbsoluteSymbolsObjectLayer) {
353353
if (*Sym->getName() == "_testFunc")
354354
SawSymbolDef = true;
355355
else
356-
ADD_FAILURE() << "unexpected symbol " << *Sym->getName();
356+
ADD_FAILURE() << "unexpected symbol " << Sym->getName();
357357
}
358358
EXPECT_EQ(SymCount, 1u);
359359
return Error::success();

0 commit comments

Comments
 (0)