[PATCH] D107432: [RISCV] Emit DWARF location expression for RVV stack objects.
Fraser Cormack via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Nov 15 09:57:43 PST 2021
frasercrmck added inline comments.
================
Comment at: llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp:344
+ } else if (VLENBSized < 0) {
+ Ops.push_back(dwarf::DW_OP_constu);
+ Ops.push_back(-VLENBSized);
----------------
Is this path tested by this patch? I don't see any `DW_OP_minus` in the expected output. I may be missing something, though.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107432/new/
https://reviews.llvm.org/D107432
More information about the llvm-commits
mailing list