[PATCH] D136629: [AMDGPU] Fix delay alu for VOPD with src2acc
Jay Foad via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 25 03:22:43 PDT 2022
foad added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h:564
ComponentLayout(ComponentKind Kind_ = ComponentKind::SINGLE,
- unsigned OpXSrcNum_ = 0)
- : Kind(Kind_), OpXSrcNum(OpXSrcNum_) {
+ unsigned OpXSrcNum_ = 0, unsigned ParsedOpXSrcNum_ = 0)
+ : Kind(Kind_), OpXSrcNum(OpXSrcNum_), ParsedOpXSrcNum(ParsedOpXSrcNum_) {
----------------
Don't need any of these trailing underscores.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D136629/new/
https://reviews.llvm.org/D136629
More information about the llvm-commits
mailing list