about summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa/src/back
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-05-18 18:14:43 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-05-18 18:14:43 +0200
commit178e09ed3705ee7eed64cfecb02173e9f54d82b0 (patch)
tree0c942c1a91cd0b38c04b2bb5aa025777891f4729 /compiler/rustc_codegen_ssa/src/back
parent684b7b70f4940a0abfecd3d95fe339960d6048d4 (diff)
downloadrust-178e09ed3705ee7eed64cfecb02173e9f54d82b0.tar.gz
rust-178e09ed3705ee7eed64cfecb02173e9f54d82b0.zip
Remove rustc_attr_data_structures re-export from rustc_attr_parsing
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/symbol_export.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
index 06ba5b4f6a7..9e9029d16b1 100644
--- a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
+++ b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs
@@ -370,7 +370,7 @@ fn exported_symbols_provider_local<'tcx>(
 
             if !tcx.sess.opts.share_generics() {
                 if tcx.codegen_fn_attrs(mono_item.def_id()).inline
-                    == rustc_attr_parsing::InlineAttr::Never
+                    == rustc_attr_data_structures::InlineAttr::Never
                 {
                     // this is OK, we explicitly allow sharing inline(never) across crates even
                     // without share-generics.