diff options
| author | bors <bors@rust-lang.org> | 2025-06-02 19:35:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-06-02 19:35:39 +0000 |
| commit | 5d707b07e42766c080c5012869c9988a18dcbb83 (patch) | |
| tree | caec2d7b714f8329d50f170457f9a2859c9b44f8 /compiler/rustc_session/src | |
| parent | 449c801783ecef2aad3ae03d6c9e4ac007de7d4b (diff) | |
| parent | 44ba2432527ef3f78973ad08672725ad72b50fc7 (diff) | |
| download | rust-5d707b07e42766c080c5012869c9988a18dcbb83.tar.gz rust-5d707b07e42766c080c5012869c9988a18dcbb83.zip | |
Auto merge of #141912 - Kobzol:rollup-wurlnsx, r=Kobzol
Rollup of 5 pull requests Successful merges: - rust-lang/rust#141767 (ci: use free runner for aarch64-gnu-llvm-19-1 PR job) - rust-lang/rust#141858 (Fix typo in `StructuralPartialEq` docs) - rust-lang/rust#141865 (Optionally don't steal the THIR) - rust-lang/rust#141874 (add f16_epsilon and f128_epsilon diagnostic items) - rust-lang/rust#141904 (test-float-parse: apply `cfg(not(bootstrap))`) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 5b4068740a1..12fa05118ca 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -2366,6 +2366,8 @@ options! { "run LLVM in non-parallel mode (while keeping codegen-units and ThinLTO)"), no_profiler_runtime: bool = (false, parse_no_value, [TRACKED], "prevent automatic injection of the profiler_builtins crate"), + no_steal_thir: bool = (false, parse_bool, [UNTRACKED], + "don't steal the THIR when we're done with it; useful for rustc drivers (default: no)"), no_trait_vptr: bool = (false, parse_no_value, [TRACKED], "disable generation of trait vptr in vtable for upcasting"), no_unique_section_names: bool = (false, parse_bool, [TRACKED], |
