[llvm] [AArch64][SME] Fix typo in docs "block" -> "bundle" (NFC) (PR #161383)
Benjamin Maxwell via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 30 07:25:21 PDT 2025
https://github.com/MacDue created https://github.com/llvm/llvm-project/pull/161383
None
>From 37d28fb819d303075d6f931f11b7b0eb9653119e Mon Sep 17 00:00:00 2001
From: Benjamin Maxwell <benjamin.maxwell at arm.com>
Date: Tue, 30 Sep 2025 14:22:56 +0000
Subject: [PATCH] [AArch64][SME] Fix typo in docs "block" -> "bundle" (NFC)
---
llvm/lib/Target/AArch64/MachineSMEABIPass.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/llvm/lib/Target/AArch64/MachineSMEABIPass.cpp b/llvm/lib/Target/AArch64/MachineSMEABIPass.cpp
index cced0faa28889..474974893d945 100644
--- a/llvm/lib/Target/AArch64/MachineSMEABIPass.cpp
+++ b/llvm/lib/Target/AArch64/MachineSMEABIPass.cpp
@@ -22,7 +22,7 @@
// To handle ZA state across control flow, we make use of edge bundling. This
// assigns each block an "incoming" and "outgoing" edge bundle (representing
// incoming and outgoing edges). Initially, these are unique to each block;
-// then, in the process of forming bundles, the outgoing block of a block is
+// then, in the process of forming bundles, the outgoing bundle of a block is
// joined with the incoming bundle of all successors. The result is that each
// bundle can be assigned a single ZA state, which ensures the state required by
// all a blocks' successors is the same, and that each basic block will always
More information about the llvm-commits
mailing list