[all-commits] [llvm/llvm-project] da1aff: [llvm][PowerPC] Correct handling of spill slots fo...
David Spickett via All-commits
all-commits at lists.llvm.org
Fri Dec 1 02:40:39 PST 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: da1aff2b2a3192f5e32fa350de19aac0b89fed18
https://github.com/llvm/llvm-project/commit/da1aff2b2a3192f5e32fa350de19aac0b89fed18
Author: David Spickett <david.spickett at linaro.org>
Date: 2023-12-01 (Fri, 01 Dec 2023)
Changed paths:
M llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
Log Message:
-----------
[llvm][PowerPC] Correct handling of spill slots for SPE when EXPENSIVE_CHECKS is enabled (#73940)
This was modifying a container as it iterated it, which tripped a check
in libstdc++'s debug checks.
Instead, just assign to the item via the reference we already have.
This fixes the following expensive checks failures on my machine:
LLVM :: CodeGen/PowerPC/fp-strict.ll
LLVM :: CodeGen/PowerPC/pr55463.ll
LLVM :: CodeGen/PowerPC/register-pressure.ll
LLVM :: CodeGen/PowerPC/spe.ll
Which are some of the tests noted by #68594.
More information about the All-commits
mailing list