[llvm] AMDGPU/GlobalISel: Disable LCSSA pass (PR #124297)
Petar Avramovic via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 03:49:58 PST 2025
================
@@ -312,6 +312,12 @@ bool AMDGPURegBankLegalize::runOnMachineFunction(MachineFunction &MF) {
}
// Opcodes that also support S1.
+ if (Opc == G_FREEZE &&
+ MRI.getType(MI->getOperand(0).getReg()) != LLT::scalar(1)) {
+ RBLHelper.applyMappingTrivial(*MI);
+ continue;
+ }
+
----------------
petar-avramovic wrote:
moved to https://github.com/llvm/llvm-project/pull/128702
https://github.com/llvm/llvm-project/pull/124297
More information about the llvm-commits
mailing list