about summary refs log tree commit diff
path: root/compiler/rustc_codegen_gcc/src/lib.rs
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-10-09 20:27:24 +0200
committerGitHub <noreply@github.com>2024-10-09 20:27:24 +0200
commite642442f12dc393c36369c6f33a37cf087880001 (patch)
tree651921d0a880bfeb67b8f3a912332ac6e3ecc854 /compiler/rustc_codegen_gcc/src/lib.rs
parentf144469bda886b14a8bfcb93233a894a76f450cf (diff)
parent43e198a3ae23f469e1c87b099789af1bc025fe50 (diff)
downloadrust-e642442f12dc393c36369c6f33a37cf087880001.tar.gz
rust-e642442f12dc393c36369c6f33a37cf087880001.zip
Rollup merge of #131424 - workingjubilee:stem-the-tyde-of-glob-imports, r=jieyouxu
compiler: Stop reexporting enum-globs from `rustc_target::abi`

Three enums had **all** their variants glob-exported into a distressingly large amount of the tree. Cease to do that, and also cease to glob import the contents of the module that contained them. Redirect relevant imports to their actual source, the `rustc_abi` crate.

No functional changes.
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/lib.rs')
-rw-r--r--compiler/rustc_codegen_gcc/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs
index a7a32e285d8..7486eefeb85 100644
--- a/compiler/rustc_codegen_gcc/src/lib.rs
+++ b/compiler/rustc_codegen_gcc/src/lib.rs
@@ -32,6 +32,7 @@ extern crate tempfile;
 extern crate tracing;
 
 // The rustc crates we need
+extern crate rustc_abi;
 extern crate rustc_apfloat;
 extern crate rustc_ast;
 extern crate rustc_attr;