[clang] [llvm] [LLVM][Clang][AArch64] Implement AArch64 build attributes (PR #118771)

Oliver Stannard via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 21 08:40:49 PST 2025


================
@@ -7846,6 +7839,13 @@ bool AArch64AsmParser::parseDirectiveAeabiSubSectionHeader(SMLoc L) {
     return true;
   }
 
+  bool SubsectionExists = true;
----------------
ostannard wrote:

You don't need this extra `bool`, you can just check `if (ExistingSubsection)` below.

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


More information about the cfe-commits mailing list