We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
!ctx.aarch64PauthAbiCoreInfo.empty()
1 parent f3c2a40 commit 2aa53b0Copy full SHA for 2aa53b0
lld/ELF/Driver.cpp
@@ -2792,10 +2792,8 @@ static void readSecurityNotes(Ctx &ctx) {
2792
referenceFileName = (*it)->getName();
2793
}
2794
2795
- bool hasValidPauthAbiCoreInfo =
2796
- (!ctx.aarch64PauthAbiCoreInfo.empty() &&
2797
- llvm::any_of(ctx.aarch64PauthAbiCoreInfo,
2798
- [](uint8_t c) { return c != 0; }));
+ bool hasValidPauthAbiCoreInfo = llvm::any_of(
+ ctx.aarch64PauthAbiCoreInfo, [](uint8_t c) { return c != 0; });
2799
2800
for (ELFFileBase *f : ctx.objectFiles) {
2801
uint32_t features = f->andFeatures;
0 commit comments