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 5420db8 commit 35d5c86Copy full SHA for 35d5c86
lld/ELF/Driver.cpp
@@ -2753,10 +2753,8 @@ static void readSecurityNotes(Ctx &ctx) {
2753
referenceFileName = (*it)->getName();
2754
}
2755
2756
- bool hasValidPauthAbiCoreInfo =
2757
- (!ctx.aarch64PauthAbiCoreInfo.empty() &&
2758
- llvm::any_of(ctx.aarch64PauthAbiCoreInfo,
2759
- [](uint8_t c) { return c != 0; }));
+ bool hasValidPauthAbiCoreInfo = llvm::any_of(
+ ctx.aarch64PauthAbiCoreInfo, [](uint8_t c) { return c != 0; });
2760
2761
for (ELFFileBase *f : ctx.objectFiles) {
2762
uint32_t features = f->andFeatures;
0 commit comments