We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caeea3f commit fda3c9fCopy full SHA for fda3c9f
compiler/rustc_driver_impl/src/lib.rs
@@ -764,9 +764,7 @@ fn print_crate_info(
764
use rustc_target::spec::SplitDebuginfo::{Off, Packed, Unpacked};
765
766
for split in &[Off, Packed, Unpacked] {
767
- let stable = sess.target.options.supported_split_debuginfo.contains(split);
768
- let unstable_ok = sess.unstable_options();
769
- if stable || unstable_ok {
+ if sess.target.options.supported_split_debuginfo.contains(split) {
770
safe_println!("{split}");
771
}
772
0 commit comments