[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:18:21 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:

I've jammed it into this file too. IIRC it's technically not required to support past textual IR or something, but IMO it doesn't cost us anything.

https://github.com/llvm/llvm-project/pull/131855


More information about the llvm-commits mailing list