[llvm] [AArch64][Build Attributes] Improve Parsing and Formatting (PR #126530)

Oliver Stannard via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 18 03:23:21 PST 2025


================
@@ -222,13 +222,9 @@ void AArch64TargetStreamer::emitAttribute(StringRef VendorName, unsigned Tag,
                      "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;
             }
+            // Case Item.IntValue == Value is permited.
----------------
ostannard wrote:

What does the assembler do if there are two directives for:
* The same tag with the same value?
* The same tag with different values?

Are there any tests covering this?

https://github.com/llvm/llvm-project/pull/126530


More information about the llvm-commits mailing list