================
@@ -172,7 +215,12 @@ bool
SILateBranchLowering::runOnMachineFunction(MachineFunction &MF) {
case AMDGPU::SI_CS_CHAIN_TC_W32:
case AMDGPU::SI_CS_CHAIN_TC_W64:
- expandChainCall(MI);
+ expandChainCall(MI, ST, /*DynamicVGPR*/ false);
+ MadeChange = true;
+ break;
+ case AMDGPU::SI_CS_CHAIN_TC_W32_DVGPR:
+ case AMDGPU::SI_CS_CHAIN_TC_W64_DVGPR:
+ expandChainCall(MI, ST, /*DynamicVGPR*/ true);
----------------
arsenm wrote:
```suggestion
expandChainCall(MI, ST, /*DynamicVGPR=*/ true);
```
https://github.com/llvm/llvm-project/pull/130094
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits