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

Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8f21da1
compiletest: Allow `only-unix` in test headers
Enselic Mar 11, 2024
ee8efd7
fix: typos
testwill Mar 13, 2024
cdeeed8
Increase timeout for new bors bot
Kobzol Mar 13, 2024
e0488c0
Fix StableMIR is_full computation
celinval Mar 13, 2024
d919b04
Generate link to `Local` in `hir::Let` documentation
GuillaumeGomez Mar 13, 2024
cb15bf6
Rename `ValidityConstraint` -> `PlaceValidity`
Nadrieril Mar 13, 2024
4fc35c4
Rename `TypeCx` -> `PatCx`
Nadrieril Mar 13, 2024
f275406
Rename `RustcMatchCheckCtxt` -> `RustcPatCtxt`
Nadrieril Mar 13, 2024
c423678
Remove `MaybeInfiniteInt::JustAfterMax`
Nadrieril Mar 13, 2024
2366d97
extend docs of -Zprint-mono-items
RalfJung Mar 13, 2024
533ddf9
Add Exploit Mitigations PG to triagebot.toml
rcvalle Mar 13, 2024
216df4a
safe transmute: require that src referent is smaller than dst
jswrenn Mar 13, 2024
026eb3d
Delay a bug for stranded opaques
compiler-errors Mar 13, 2024
fa98724
Rollup merge of #122422 - Enselic:only-unix, r=oli-obk
matthiaskrgr Mar 13, 2024
ff5e1eb
Rollup merge of #122424 - testwill:typos, r=michaelwoerister
matthiaskrgr Mar 13, 2024
cf79540
Rollup merge of #122425 - Kobzol:new-bors-update-timeout, r=lqd
matthiaskrgr Mar 13, 2024
96a41ce
Rollup merge of #122426 - celinval:smir-fix-full, r=oli-obk
matthiaskrgr Mar 13, 2024
c6acc47
Rollup merge of #122429 - rcvalle:rust-triagebot-add-exploit-mitigati…
matthiaskrgr Mar 13, 2024
b84d1b8
Rollup merge of #122430 - GuillaumeGomez:link-to-local, r=TaKO8Ki
matthiaskrgr Mar 13, 2024
b3376bb
Rollup merge of #122434 - Nadrieril:renames, r=compiler-errors
matthiaskrgr Mar 13, 2024
5c2aa6d
Rollup merge of #122437 - Nadrieril:no-after-max, r=compiler-errors
matthiaskrgr Mar 13, 2024
89c3fa9
Rollup merge of #122438 - jswrenn:check-referent-size, r=compiler-errors
matthiaskrgr Mar 13, 2024
8d2f79c
Rollup merge of #122442 - RalfJung:print-mono-items, r=compiler-errors
matthiaskrgr Mar 13, 2024
c52ce4e
Rollup merge of #122449 - compiler-errors:stranded-opaque, r=oli-obk
matthiaskrgr Mar 13, 2024
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
6 changes: 3 additions & 3 deletions compiler/rustc_target/src/spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ impl ToJson for LldFlavor {

impl LinkerFlavor {
/// At this point the target's reference linker flavor doesn't yet exist and we need to infer
/// it. The inference always succeds and gives some result, and we don't report any flavor
/// it. The inference always succeeds and gives some result, and we don't report any flavor
/// incompatibility errors for json target specs. The CLI flavor is used as the main source
/// of truth, other flags are used in case of ambiguities.
fn from_cli_json(cli: LinkerFlavorCli, lld_flavor: LldFlavor, is_gnu: bool) -> LinkerFlavor {
Expand Down Expand Up @@ -581,7 +581,7 @@ impl LinkSelfContainedDefault {
self == LinkSelfContainedDefault::False
}

/// Returns whether the target spec explictly requests self-contained linking, i.e. not via
/// Returns whether the target spec explicitly requests self-contained linking, i.e. not via
/// inference.
pub fn is_linker_enabled(self) -> bool {
match self {
Expand Down Expand Up @@ -2090,7 +2090,7 @@ pub struct TargetOptions {
/// If `None`, then `CFG_DEFAULT_CODEGEN_BACKEND` environmental variable captured when
/// compiling `rustc` will be used instead (or llvm if it is not set).
///
/// N.B. when *using* the compiler, backend can always be overriden with `-Zcodegen-backend`.
/// N.B. when *using* the compiler, backend can always be overridden with `-Zcodegen-backend`.
pub default_codegen_backend: Option<StaticCow<str>>,

/// Whether to generate trap instructions in places where optimization would
Expand Down