[PATCH] D115344: [AMDGPU] Ignore fixed ABI for graphics
Matt Arsenault via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 8 07:00:36 PST 2021
arsenm added a comment.
D115154 <https://reviews.llvm.org/D115154> removes the option entirely
================
Comment at: llvm/lib/Target/AMDGPU/SIISelLowering.cpp:3269
if (!AMDGPUTargetMachine::EnableFixedFunctionABI &&
- CallConv != CallingConv::AMDGPU_Gfx) {
+ !AMDGPU::isGraphics(CallConv)) {
// Copy special input registers after user input arguments.
----------------
Why is this different? Shader entries shouldn't be seeing calls?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D115344/new/
https://reviews.llvm.org/D115344
More information about the llvm-commits
mailing list