Skip to content
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

Rollup of 14 pull requests #137651

Merged
merged 33 commits into from
Feb 26, 2025
Merged
Changes from 2 commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
0842f2c
Add fast path for displaying pre-validated Wtf8Buf
thaliaarchi Feb 6, 2025
eb14652
Skip scanning for surrogates when not known valid
thaliaarchi Feb 7, 2025
cf1242c
Enable `f16` for MIPS
Feb 19, 2025
123062b
pass optimization level to llvm-bitcode-linker
usamoi Feb 5, 2025
6fc1978
fixed by differentiating glob export
tapanprakasht Feb 23, 2025
afc89a1
Fixed tidy error
tapanprakasht Feb 23, 2025
5afa6a1
ssa/mono: deduplicate `type_has_metadata`
davidtwco Dec 4, 2024
a5615d3
codegen_llvm: avoid `Deref` impls w/ extern type
davidtwco Feb 4, 2025
21d41b0
trait_sel: resolve vars in host effects
davidtwco Feb 24, 2025
cede902
cleanup few unused args
klensy Feb 24, 2025
7bf6fc1
tests: add variance test for const traits
davidtwco Feb 24, 2025
0bed12e
hir_analysis: skip self type of host effect preds
davidtwco Feb 24, 2025
db6da12
tests: Add regression test for derive token invalidation (#81099)
petrochenkov Feb 24, 2025
60fc2be
run some tests on emscripten again
folkertdev Feb 24, 2025
8467a76
remove unused field from VariantDef::new and convert debug to instrument
klensy Feb 24, 2025
00e80e7
Complete the list of resources used in rustdoc output
ColinPitrat Feb 25, 2025
eaf8fc5
Update information about NanumBarunGothic
ColinPitrat Feb 25, 2025
48483ad
fix doc in library/core/src/pin.rs
xizheyin Feb 25, 2025
4bf66c5
fix #137589
jdonszelmann Feb 25, 2025
1cdd386
Rollup merge of #136576 - usamoi:pass-more-llbc, r=fmease
fmease Feb 26, 2025
e121dcf
Rollup merge of #137154 - thaliaarchi:wtf8-fast-paths, r=ChrisDenton
fmease Feb 26, 2025
49249ea
Rollup merge of #137311 - martn3:enable-f16-mips, r=tgross35
fmease Feb 26, 2025
ef53922
Rollup merge of #137320 - tapanprakasht:fix-doc-version-stability, r=…
fmease Feb 26, 2025
292c003
Rollup merge of #137529 - klensy:unused3, r=lcnr
fmease Feb 26, 2025
ef2164f
Rollup merge of #137544 - petrochenkov:deritest, r=fmease
fmease Feb 26, 2025
f192314
Rollup merge of #137559 - folkertdev:run-more-emscripten-tests, r=fmease
fmease Feb 26, 2025
51085b2
Rollup merge of #137601 - davidtwco:deduplicate-type-has-metadata, r=…
fmease Feb 26, 2025
a579a23
Rollup merge of #137603 - davidtwco:extern-types-no-deref, r=lcnr
fmease Feb 26, 2025
677295a
Rollup merge of #137604 - davidtwco:host-effect-resolve-vars, r=compi…
fmease Feb 26, 2025
a82ad94
Rollup merge of #137609 - ColinPitrat:master, r=GuillaumeGomez
fmease Feb 26, 2025
cf8498d
Rollup merge of #137613 - davidtwco:const-traits-variances, r=compile…
fmease Feb 26, 2025
0d4af08
Rollup merge of #137614 - xizheyin:issue-134874, r=cuviper
fmease Feb 26, 2025
1bb4319
Rollup merge of #137622 - jdonszelmann:fix-137589, r=compiler-errors
fmease Feb 26, 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
4 changes: 2 additions & 2 deletions compiler/rustc_codegen_ssa/src/back/linker.rs
Original file line number Diff line number Diff line change
@@ -1939,14 +1939,14 @@ impl<'a> Linker for LlbcLinker<'a> {
}

fn optimize(&mut self) {
match self.sess.opts.optimize {
self.link_arg(match self.sess.opts.optimize {
OptLevel::No => "-O0",
OptLevel::Less => "-O1",
OptLevel::More => "-O2",
OptLevel::Aggressive => "-O3",
OptLevel::Size => "-Os",
OptLevel::SizeMin => "-Oz",
};
});
}

fn full_relro(&mut self) {}