From f24335c69ea363082d922797363e98f1dcb3b14f Mon Sep 17 00:00:00 2001 From: Tim Northover Date: Thu, 15 Jul 2021 15:03:43 +0100 Subject: [PATCH] MachO: fix Clang test broken by dropping private labels in LLVM. LLVM changed to not emit L... labels for things marked "do_not_dead_strip" because the linker can sometimes drop the flag if there's no proper symbol. This Clang test checked for the old behaviour, but doesn't actually care about that bit. --- clang/test/CodeGenObjC/protocol-in-extended-class.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGenObjC/protocol-in-extended-class.m b/clang/test/CodeGenObjC/protocol-in-extended-class.m index 26c858e53e80..74f1be9e53b5 100644 --- a/clang/test/CodeGenObjC/protocol-in-extended-class.m +++ b/clang/test/CodeGenObjC/protocol-in-extended-class.m @@ -26,4 +26,4 @@ // CHECK-LP64: __OBJC_PROTOCOL_$_ExtendedProtocol: -// CHECK-LP32: L_OBJC_PROTOCOL_ExtendedProtocol: +// CHECK-LP32: _OBJC_PROTOCOL_ExtendedProtocol: