Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d2cfe48
remove feature gate
Kivooeo Aug 4, 2025
3b50253
compiler-builtins: plumb LSE support for aarch64 on linux
pmur Aug 4, 2025
6936bb9
Dynamically enable LSE for aarch64 rust provided intrinsics
pmur Jul 31, 2025
2472d19
Include allocator module in LLVM_passes timer
bjorn3 Aug 6, 2025
ee38bc0
Remove unused field from ModuleConfig
bjorn3 Aug 6, 2025
6fbea4f
Remove bitcode_llvm_cmdline
bjorn3 Aug 6, 2025
b1f49d8
Fix build/doc/test of error index generator
Kobzol Aug 6, 2025
56d5aab
make rustc_public types derive `Hash`
AlexanderPortland Aug 6, 2025
c65102e
doc(library): Fix Markdown in `Iterator::by_ref`.
Hywan Aug 7, 2025
4888762
Fix doc comment of File::try_lock and File::try_lock_shared
ulrichstark Aug 7, 2025
4f7a6ac
Port `#[allow_internal_unsafe]` to the new attribute system
scrabsha Aug 3, 2025
b9e6bd7
derive hash for placeholder automatically
AlexanderPortland Aug 7, 2025
7ea5e79
Readd myself to review queue
jackh726 Aug 7, 2025
bd0b2a4
Rollup merge of #144705 - pmur:murp/aarch64-lse, r=Amanieu
tgross35 Aug 7, 2025
3632f02
Rollup merge of #144857 - scrabsha:push-pwtyrnmqkrtr, r=jdonszelmann
tgross35 Aug 7, 2025
7010815
Rollup merge of #144900 - Kivooeo:unsigned_signed_diff-stabilize, r=d…
tgross35 Aug 7, 2025
c185361
Rollup merge of #145004 - bjorn3:remove_unused_fields, r=WaffleLapkin
tgross35 Aug 7, 2025
ca4288e
Rollup merge of #145007 - Kobzol:error-index, r=jieyouxu
tgross35 Aug 7, 2025
f0cc19d
Rollup merge of #145018 - AlexanderPortland:rustc-public-hash, r=scot…
tgross35 Aug 7, 2025
06ffcd1
Rollup merge of #145045 - Hywan:doc-library-iterator-by_ref, r=Guilla…
tgross35 Aug 7, 2025
f7d10ab
Rollup merge of #145046 - ulrichstark:master, r=tgross35
tgross35 Aug 7, 2025
e49c344
Rollup merge of #145068 - jackh726:add-review, r=jackh726
tgross35 Aug 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused field from ModuleConfig
  • Loading branch information
bjorn3 committed Aug 6, 2025
commit ee38bc06ce68d3f426f191a012ab529eceecb700
6 changes: 1 addition & 5 deletions compiler/rustc_codegen_ssa/src/back/write.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,9 @@ pub struct ModuleConfig {
/// Names of additional optimization passes to run.
pub passes: Vec<String>,
/// Some(level) to optimize at a certain level, or None to run
/// absolutely no optimizations (used for the metadata module).
/// absolutely no optimizations (used for the allocator module).
pub opt_level: Option<config::OptLevel>,

/// Some(level) to optimize binary size, or None to not affect program size.
pub opt_size: Option<config::OptLevel>,

pub pgo_gen: SwitchWithOptPath,
pub pgo_use: Option<PathBuf>,
pub pgo_sample_use: Option<PathBuf>,
Expand Down Expand Up @@ -170,7 +167,6 @@ impl ModuleConfig {
passes: if_regular!(sess.opts.cg.passes.clone(), vec![]),

opt_level: opt_level_and_size,
opt_size: opt_level_and_size,

pgo_gen: if_regular!(
sess.opts.cg.profile_generate.clone(),
Expand Down