diff options
| author | Ralf Jung <post@ralfj.de> | 2025-07-15 06:08:44 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-15 06:08:44 +0000 |
| commit | 5453326ae0e2cc58b1b0860230e843506f540a5c (patch) | |
| tree | dc3ad3a58d9b6d278b9270804c50f9da6c11acff /compiler/rustc_codegen_llvm/src | |
| parent | 794dc328b46520f145091771db6531bf1d5b5c4e (diff) | |
| parent | f7da0212af0b00b77b43e2e8c62607df43946dcf (diff) | |
| download | rust-5453326ae0e2cc58b1b0860230e843506f540a5c.tar.gz rust-5453326ae0e2cc58b1b0860230e843506f540a5c.zip | |
Merge pull request #4468 from rust-lang/rustup-2025-07-15
Automatic Rustup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs b/compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs index 8f0948b8183..49ee96a41d6 100644 --- a/compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs +++ b/compiler/rustc_codegen_llvm/src/debuginfo/gdb.rs @@ -1,13 +1,12 @@ // .debug_gdb_scripts binary section. -use rustc_ast::attr; +use rustc_attr_data_structures::{AttributeKind, find_attr}; use rustc_codegen_ssa::base::collect_debugger_visualizers_transitive; use rustc_codegen_ssa::traits::*; use rustc_hir::def_id::LOCAL_CRATE; use rustc_middle::bug; use rustc_middle::middle::debugger_visualizer::DebuggerVisualizerType; use rustc_session::config::{CrateType, DebugInfo}; -use rustc_span::sym; use crate::builder::Builder; use crate::common::CodegenCx; @@ -87,7 +86,7 @@ pub(crate) fn get_or_insert_gdb_debug_scripts_section_global<'ll>( pub(crate) fn needs_gdb_debug_scripts_section(cx: &CodegenCx<'_, '_>) -> bool { let omit_gdb_pretty_printer_section = - attr::contains_name(cx.tcx.hir_krate_attrs(), sym::omit_gdb_pretty_printer_section); + find_attr!(cx.tcx.hir_krate_attrs(), AttributeKind::OmitGdbPrettyPrinterSection); // To ensure the section `__rustc_debug_gdb_scripts_section__` will not create // ODR violations at link time, this section will not be emitted for rlibs since |
