Skip to content

Commit 64a45ed

Browse files
committed
change struct name
1 parent 88359f4 commit 64a45ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lld/ELF/InputFiles.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ static void updateSupportedARMFeatures(Ctx &ctx,
209209
ctx.arg.armHasThumb2ISA |= thumb && *thumb >= ARMBuildAttrs::AllowThumb32;
210210
}
211211

212-
struct KnownAArch64BuildAttrSubsections {
212+
struct AArch64BuildAttrSubsections {
213213
struct PauthSubSection {
214214
unsigned tagPlatform = 0;
215215
unsigned tagSchema = 0;
@@ -221,10 +221,10 @@ struct KnownAArch64BuildAttrSubsections {
221221
} fAndB;
222222
};
223223

224-
static KnownAArch64BuildAttrSubsections
224+
static AArch64BuildAttrSubsections
225225
extractBuildAttributesSubsections(const AArch64AttributeParser &attributes) {
226226

227-
KnownAArch64BuildAttrSubsections subSections;
227+
AArch64BuildAttrSubsections subSections;
228228
subSections.pauth.tagPlatform =
229229
attributes
230230
.getAttributeValue("aeabi_pauthabi",
@@ -832,7 +832,7 @@ template <class ELFT> void ObjFile<ELFT>::parse(bool ignoreComdats) {
832832
} else {
833833
bool writePauth = false;
834834
bool wrtieFeatures = false;
835-
KnownAArch64BuildAttrSubsections subSections =
835+
AArch64BuildAttrSubsections subSections =
836836
extractBuildAttributesSubsections(attributes);
837837
if (hasGnuProperties) {
838838
if (!gnuPropertiesInformation.aarch64PauthAbiCoreInfo.empty()) {

0 commit comments

Comments
 (0)