[llvm] [Verifier] Require that dbg.declare variable is a ptr (PR #134355)
Stephen Tozer via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 02:52:07 PDT 2025
================
@@ -55,8 +55,9 @@ end: ; preds = %body
define i64 @simulateWithDbgDeclare(<2 x i32> %a) local_unnamed_addr {
entry:
+ %ptr = alloca i32
----------------
SLTozer wrote:
Slightly awkward case here in that this _might_ degrade the test quality... the intent here seems to be to test that the debug declare does not cause any changes to the code in the CHECK set below, so making it no longer use `%rand` as an argument might interfere with that.
But otoh the test is non-specific; there's no description of how the debug declare might be expected to affect codegen, so I don't think I have a specific suggested change - you could add a `store i64 %rand, ptr %ptr`, or expand the check to cover the generated code for `%ptr`, but I also don't think it's a blocking issue if it stays as-is.
https://github.com/llvm/llvm-project/pull/134355
More information about the llvm-commits
mailing list