[PATCH] D155618: [RISCV] Reduce alignment of vector constant pool entries

Eli Friedman via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 19 01:35:12 PDT 2023


efriedma added inline comments.


================
Comment at: llvm/test/CodeGen/RISCV/rvv/fixed-vectors-constant-pool-alignment.ll:5
 ; CHECK: .section	.rodata.cst16,"aM", at progbits,16
-; CHECK: .p2align	4, 0x0
+; CHECK-NOT: .p2align
 ; CHECK: .byte
----------------
Messing with the alignment of constants in .rodata.cst16 is going to have nearly zero effect; the data is getting emitted in 16-byte chunks, so there's no padding anyway.  (Not sure if this is what you meant to test.)


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D155618/new/

https://reviews.llvm.org/D155618



More information about the llvm-commits mailing list