-
Notifications
You must be signed in to change notification settings - Fork 13.3k
compiler: Stop reexporting stuff in cg_llvm::abi #137210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The reexports confuse tooling like rustdoc into thinking cg_llvm is the source of key types that originate in rustc_target.
These are just |
Correct. Yes, the bug seems quite bad. |
Okay, let's not close the issue then. @bors r+ rollup |
sounds good to me |
use rustc_codegen_ssa::MemFlags; | ||
use rustc_codegen_ssa::mir::operand::{OperandRef, OperandValue}; | ||
use rustc_codegen_ssa::mir::place::{PlaceRef, PlaceValue}; | ||
use rustc_codegen_ssa::traits::*; | ||
use rustc_middle::ty::Ty; | ||
use rustc_middle::ty::layout::LayoutOf; | ||
pub(crate) use rustc_middle::ty::layout::{WIDE_PTR_ADDR, WIDE_PTR_EXTRA}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is the funniest diff in this PR, to me, because it was absolutely being reexported here but not actually used here.
@bors rollup |
…iaskrgr Rollup of 9 pull requests Successful merges: - rust-lang#136936 (Use 'yes' instead of 'while-echo' in tests/ui/process/process-sigpipe.rs except 'nto') - rust-lang#137026 (Stabilize (and const-stabilize) `integer_sign_cast`) - rust-lang#137059 (fix: Alloc new errorcode E0803 for E0495) - rust-lang#137177 (Update `minifier-rs` version to `0.3.5`) - rust-lang#137210 (compiler: Stop reexporting stuff in cg_llvm::abi) - rust-lang#137213 (Remove `rustc_middle::mir::tcx` module.) - rust-lang#137216 (eval_outlives: bail out early if both regions are in the same SCC) - rust-lang#137228 (Fix typo in hidden internal docs of `TrustedRandomAccess`) - rust-lang#137242 (Add reference annotations for the `do_not_recommend` attribute) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#137210 - workingjubilee:fixup-passmode-import, r=RalfJung compiler: Stop reexporting stuff in cg_llvm::abi The reexports confuse tooling like rustdoc into thinking cg_llvm is the source of key types that originate in rustc_target.
The reexports confuse tooling like rustdoc into thinking cg_llvm is the source of key types that originate in rustc_target.
Avoids #137209 but does not fix the underlying bug.
r? @RalfJung