[llvm] [DebugInfo][RemoveDIs] Remove debug-intrinsic printing cmdline options (PR #131855)
Jeremy Morse via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 08:19:02 PDT 2025
================
@@ -1,39 +1,24 @@
-;; Test that we can write in the new debug info format.
-; RUN: opt --passes=verify -S --experimental-debuginfo-iterators=false --write-experimental-debuginfo=false < %s \
-; RUN: | FileCheck %s --check-prefixes=CHECK,OLDDBG --implicit-check-not=llvm.dbg
-; RUN: opt --passes=verify -S --experimental-debuginfo-iterators=false --write-experimental-debuginfo=true < %s \
-; RUN: | FileCheck %s --check-prefixes=CHECK,NEWDBG --implicit-check-not=llvm.dbg
+;; Test that we can read old debug intrinsics from bitcode, and autoupgrade
+;; them to the new debug-records format.
+; RUN: opt --passes=verify %s.bc -o - -S \
+; RUN: | FileCheck %s --implicit-check-not=llvm.dbg
----------------
jmorse wrote:
Have added a bcanalyzer call that checks there are a series of CALL records interleaved with the other instructions in the function, I think that's sufficient for checking that intrinsics are present?
https://github.com/llvm/llvm-project/pull/131855
More information about the llvm-commits
mailing list