[llvm] [LV][NFC] Change undef to poison in most tests (PR #163525)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 15 02:32:07 PDT 2025
https://github.com/fhahn commented:
In some cases, the new changes make tests immediate UB or always result in poison.
Would be good to not use poison for most cases,
* for phi nodes (better use a concrete start value)
* pointers for GEPs/loads/stores
* return values (those can just be changed to `ret void`)
https://github.com/llvm/llvm-project/pull/163525
More information about the llvm-commits
mailing list