[llvm] 4c31b6f - Fix comment in FPR128 test (NFC)

via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 8 03:32:02 PDT 2026


Author: Benjamin Maxwell
Date: 2026-03-08T10:31:57Z
New Revision: 4c31b6f93c7d8499b93cd6d29b8874a62f2cfed0

URL: https://github.com/llvm/llvm-project/commit/4c31b6f93c7d8499b93cd6d29b8874a62f2cfed0
DIFF: https://github.com/llvm/llvm-project/commit/4c31b6f93c7d8499b93cd6d29b8874a62f2cfed0.diff

LOG: Fix comment in FPR128 test (NFC)

Added: 
    

Modified: 
    llvm/test/CodeGen/AArch64/framelayout-fpr128-csr.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/AArch64/framelayout-fpr128-csr.ll b/llvm/test/CodeGen/AArch64/framelayout-fpr128-csr.ll
index 09bfbc5d4c82b..4cce7ec8a47cd 100644
--- a/llvm/test/CodeGen/AArch64/framelayout-fpr128-csr.ll
+++ b/llvm/test/CodeGen/AArch64/framelayout-fpr128-csr.ll
@@ -3,9 +3,9 @@
 ; RUN: llc -verify-machineinstrs -mtriple=aarch64-windows-msvc < %s | FileCheck %s --check-prefix=CHECK-WINDOWS
 
 ; The purpose of this test is to verify q8 is assigned a 16-byte aligned offset
-; after the x10 is assigned an offset. The CSR (on Linux) are assigned offsets
-; in the order GPRs then FPRs. The stack size of this function is 48
-; (alignTo((16 + 8 * 3), 16)), so after x8 is given the offset 24, q8 originally
+; after the x10 is assigned an offset. The CSRs (on Linux) are assigned offsets
+; in the order GPRs then FPRs. The stack size of this function is 32
+; (alignTo((16 + 8), 16)), so after x8 is given the offset 24, q8 originally
 ; would be assigned offset 8, which is not 16-byte aligned.
 define preserve_allcc void @d(ptr %ptr) nounwind {
 ; CHECK-LABEL: d:


        


More information about the llvm-commits mailing list