[llvm] [AArch64][Build Attributes] Improve Parsing and Formatting (PR #126530)
Oliver Stannard via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 02:59:40 PST 2025
================
@@ -214,22 +215,20 @@ void AArch64TargetStreamer::emitAttribute(StringRef VendorName, unsigned Tag,
return;
}
for (MCELFStreamer::AttributeItem &Item : SubSection.Content) {
+ // Tag already exists
if (Item.Tag == Tag) {
- if (!Override) {
- if ((unsigned(-1) != Value && Item.IntValue != Value) ||
- ("" != String && Item.StringValue != String)) {
- assert(0 &&
- "Can not add AArch64 build attribute: An attribute with "
- "the same tag and a different value already exists");
- return;
- } else {
- // Case Item.IntValue == Value, no need to emit twice
- assert(0 &&
- "AArch64 build attribute: An attribute with the same tag "
- "and a same value already exists");
- return;
- }
+ // New value for existing tag: update tag
+ if ((unsigned(-1) != Value && Item.IntValue != Value) ||
----------------
ostannard wrote:
Why do you need to check whether the value is different to the previous one? This will have the same effect as always updating it.
https://github.com/llvm/llvm-project/pull/126530
More information about the llvm-commits
mailing list