[PATCH] D126989: [AMDGPU] gfx11 VOPC instructions
Stanislav Mekhanoshin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jun 9 11:56:52 PDT 2022
rampitec added inline comments.
================
Comment at: llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp:1766
void cvtDPP8(MCInst &Inst, const OperandVector &Operands) { cvtDPP(Inst, Operands, true); }
+ void cvtVOPCNoDstDPP(MCInst &Inst, const OperandVector &Operands, bool IsDPP8 = false);
+ void cvtVOPCNoDstDPP8(MCInst &Inst, const OperandVector &Operands) { cvtVOPCNoDstDPP(Inst, Operands, true); }
----------------
Could you please reformat it to 8 chars max?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D126989/new/
https://reviews.llvm.org/D126989
More information about the llvm-commits
mailing list