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

Fix issue 85435 by restricting Fake Read precision #55

Merged
merged 114 commits into from
Jun 29, 2021
Merged
Changes from 1 commit
Commits
Show all changes
114 commits
Select commit Hold shift + click to select a range
0202875
add TrustedRandomAccess specialization to vec::extend
the8472 Apr 1, 2021
c64a2ed
elision of generic argument in E0599 if the methode has not been foun…
ABouttefeux Apr 15, 2021
8789ab1
Update Docker to build the deprecated target alongside the new one
kulikjak May 13, 2021
b13185d
Improve comment
kulikjak May 13, 2021
c150772
rustdoc: avoid legacy Korean fonts in Windows
May 15, 2021
7e2e331
rustdoc: add the license of Noto Sans KR
May 15, 2021
b5e09dc
rustdoc: update static files
May 15, 2021
fe44fde
chore: format code
May 15, 2021
6b601d4
chore: update comment in rustdoc.css
May 15, 2021
8412d30
test: update unversioned-files.txt
May 18, 2021
8a2d663
test: fix the order in unversioned-files.txt
May 19, 2021
f749d88
Disallow shadowing const parameters
FabianWolff May 19, 2021
e587366
doc: clarify Mutex::try_lock, etc. errors
tlyu May 20, 2021
c441675
Add Weak may_dangle tests
dtolnay May 21, 2021
23a4050
Weak's type parameter may dangle on drop
dtolnay May 21, 2021
6efa14b
remove generic argument insead of displaying "_"
ABouttefeux May 21, 2021
1f130fb
Revert portion of PR #83521 that injected issue #85435 (and thus expo…
pnkfelix May 21, 2021
4742bbb
Regression test for issue 85435.
pnkfelix May 21, 2021
0d073c9
Apply suggestions from code review
pnkfelix May 21, 2021
5b802ed
Apply suggestions from code review
ABouttefeux May 22, 2021
120691c
change from review and show full type if it can be deref
ABouttefeux May 22, 2021
a50f1e9
Get rid of PreviousDepGraph.
cjgillot May 22, 2021
903e369
Fix boostrap using host exe suffix for cargo
jam1garner May 22, 2021
9e11b61
linkchecker: Organize state into a struct, and add report.
ehuss Jan 11, 2021
d7341f3
Don't reborrow self when computing the dest pointer in <[T]>::copy_wi…
SkiFire13 May 23, 2021
db8c6e0
Remove stray .stderr files
LeSeulArtichaut May 24, 2021
e0c9719
Avoid a double drop in Vec::dedup if a destructor panics
SkiFire13 May 24, 2021
c9595fa
Make Vec::dedup panicking test actually detect double panics
SkiFire13 May 24, 2021
0e4f8cb
minor rewording after review
tlyu May 24, 2021
1c1d4f9
Apply suggestions from code review
pnkfelix May 24, 2021
b63f7f9
Demote ControlFlow::{from|into}_try to pub(crate)
scottmcm May 24, 2021
ad30826
Revert "Move llvm submodule updates to rustbuild"
Mark-Simulacrum May 24, 2021
e238ee3
Update cc
ChrisDenton May 24, 2021
e9e6e66
Optimize linkchecker by caching all filesystem access.
ehuss May 24, 2021
b6532eb
Add some tests for the linkchecker.
ehuss May 24, 2021
37588e9
Document shared_from_cow functions
fee1-dead May 25, 2021
79a5b12
Fix tasklist example in rustdoc book.
ehuss May 25, 2021
8d954fa
Remove arrays/IntoIterator message from Iterator trait.
m-ou-se May 25, 2021
87cf2d4
Move stability attribute for methods under the `ip` feature from the …
CDirkx May 25, 2021
3ed90e2
fix matches! and assert_matches! on edition 2021
May 25, 2021
0baf898
Remove num_as_ne_bytes feature
hch12907 May 25, 2021
5d8e6ea
show list of candidates
ABouttefeux May 25, 2021
824c743
add regression test
May 25, 2021
d14dd9f
emit diagnostic after post-monomorphization errors
lqd May 16, 2021
6f61456
add test for issue 85155 and similar
lqd May 24, 2021
b083541
Handle `unsafe_op_in_unsafe_fn` properly in THIR unsafeck
LeSeulArtichaut May 24, 2021
f7916b4
Fix `unused_unsafe` in THIR unsafeck
LeSeulArtichaut May 24, 2021
f9e08cd
Run THIR unsafeck on `unsafe_op_in_unsafe_fn` test
LeSeulArtichaut May 24, 2021
caf6faf
Remove Iterator #[rustc_on_unimplemented]s that no longer apply.
m-ou-se May 25, 2021
072b85c
Update books
ehuss May 25, 2021
8a7dc0d
Update cargo
ehuss May 25, 2021
47a90f4
Auto merge of #85535 - dtolnay:weakdangle, r=kennytm
bors May 26, 2021
54bdfa1
Auto merge of #85252 - kulikjak:fix-solaris-CI, r=Mark-Simulacrum
bors May 26, 2021
0264f4f
Rollup merge of #84048 - konan8205:master, r=jsha
JohnTitor May 26, 2021
ae6a1a7
Rollup merge of #85529 - tlyu:trylock-errors, r=JohnTitor
JohnTitor May 26, 2021
d75521a
Rollup merge of #85590 - jam1garner:tool-bootstrap-su-fix, r=Mark-Sim…
JohnTitor May 26, 2021
b7b9ce3
Rollup merge of #85610 - SkiFire13:fix-copy-within-provenance, r=oli-obk
JohnTitor May 26, 2021
0bc3066
Rollup merge of #85623 - LeSeulArtichaut:stray-stderr, r=Mark-Simulacrum
JohnTitor May 26, 2021
587de8e
Rollup merge of #85645 - scottmcm:demote-from-into-try, r=yaahc
JohnTitor May 26, 2021
7508203
Rollup merge of #85647 - rust-lang:revert-81601-llvm-on-demand, r=jyn514
JohnTitor May 26, 2021
e87bc66
Rollup merge of #85666 - fee1-dead:document-shared-from-cow, r=dtolnay
JohnTitor May 26, 2021
1e51afa
Rollup merge of #85668 - ehuss:fix-rustdoc-tasklist, r=Mark-Simulacrum
JohnTitor May 26, 2021
7caf93f
Rollup merge of #85672 - CDirkx:ip, r=Mark-Simulacrum
JohnTitor May 26, 2021
bce257c
Rollup merge of #85699 - ehuss:update-books, r=ehuss
JohnTitor May 26, 2021
7c0677a
Rollup merge of #85701 - ehuss:update-cargo, r=ehuss
JohnTitor May 26, 2021
1969c2e
Auto merge of #85711 - JohnTitor:rollup-8why04t, r=JohnTitor
bors May 26, 2021
d1b69cf
Fix typo in core::array::IntoIter comment
BlackHoleFox May 26, 2021
128d385
stabilize member constraints
nikomatsakis Apr 29, 2021
45099e6
Add inline attr to private CString::into_inner
elichai May 26, 2021
52a3365
cleanup and fix compiling of libunwind
12101111 May 24, 2021
69c78a9
Rollup merge of #85478 - FabianWolff:issue-85348, r=petrochenkov
Dylan-DPC May 26, 2021
27899e3
Rollup merge of #85625 - SkiFire13:fix-85613-vec-dedup-drop-panics, r…
Dylan-DPC May 26, 2021
f5c5cca
Rollup merge of #85627 - LeSeulArtichaut:thir-unsafe-fn-lint, r=nikom…
Dylan-DPC May 26, 2021
4b0014e
Rollup merge of #85633 - lqd:stackless_span_stacks, r=oli-obk
Dylan-DPC May 26, 2021
12ab323
Rollup merge of #85670 - m-ou-se:array-intoiter-1, r=scottmcm
Dylan-DPC May 26, 2021
3c2a709
Rollup merge of #85678 - lukas-code:matches2021, r=dtolnay
Dylan-DPC May 26, 2021
f3b10dd
Rollup merge of #85679 - hch12907:master, r=Mark-Simulacrum
Dylan-DPC May 26, 2021
9ee87c7
Rollup merge of #85712 - BlackHoleFox:fix-iter-typo, r=jyn514
Dylan-DPC May 26, 2021
b36c45d
Update RLS
Xanewok May 26, 2021
f9499ea
* Fix bug where some <details> tags were not closed.
GuillaumeGomez May 26, 2021
3bed0be
Update trait toggle test
GuillaumeGomez May 26, 2021
f6a28aa
Auto merge of #85720 - Dylan-DPC:rollup-in5917x, r=Dylan-DPC
bors May 26, 2021
b3054d2
bless compare-mode=nll output
nikomatsakis May 26, 2021
9a700d2
Auto merge of #85721 - Xanewok:update-rls, r=Xanewok
bors May 26, 2021
ff8a387
Remove unneeded workaround
syvb May 26, 2021
9111b8a
Auto merge of #83770 - the8472:tra-extend, r=Mark-Simulacrum
bors May 26, 2021
fdc15ef
Don't hash `thir_body`
LeSeulArtichaut May 26, 2021
e7a3ada
Mention float workaround in Iterator::{min,max}
syvb May 26, 2021
86ac0b4
Auto merge of #85652 - ehuss:linkchecker-perf, r=Mark-Simulacrum
bors May 26, 2021
edef5bc
Lint against non-camelCase trait alias names
syvb May 26, 2021
7146a05
don't use unneeded closure
syvb May 27, 2021
b00f6fc
don't use unneeded closure
syvb May 27, 2021
f2810d5
Rollup merge of #84221 - ABouttefeux:generic-arg-elision, r=estebank
Dylan-DPC May 27, 2021
3530a78
Rollup merge of #84701 - nikomatsakis:stabilize-member-constraints-61…
Dylan-DPC May 27, 2021
9d4a644
Rollup merge of #85564 - pnkfelix:issue-85435-readd-capture-disjoint-…
Dylan-DPC May 27, 2021
e7c9469
Rollup merge of #85583 - cjgillot:no-previous-dg, r=petrochenkov
Dylan-DPC May 27, 2021
0c53acc
Rollup merge of #85649 - ChrisDenton:update-cc, r=matthewjasper
Dylan-DPC May 27, 2021
de1d7db
Rollup merge of #85689 - m-ou-se:array-intoiter-3, r=estebank
Dylan-DPC May 27, 2021
955e0f4
Rollup merge of #85719 - elichai:cstring-into_inner-inline, r=m-ou-se
Dylan-DPC May 27, 2021
85a408a
Rollup merge of #85725 - Smittyvb:rm-24159-workaround, r=RalfJung
Dylan-DPC May 27, 2021
c4ec606
Auto merge of #85734 - Dylan-DPC:rollup-q6iiees, r=Dylan-DPC
bors May 27, 2021
9814e83
Auto merge of #84124 - 12101111:libunwind, r=petrochenkov
bors May 27, 2021
3cafe2a
Rename opensbd to openbsd
370417 May 27, 2021
04d34a9
Enable Vec's calloc optimization for Option<NonZero>
scottmcm May 27, 2021
8d1e3d3
Auto merge of #85732 - Smittyvb:trait-alias-camelcase-lint, r=varkor
bors May 27, 2021
ea78d1e
Auto merge of #85737 - scottmcm:vec-calloc-option-nonzero, r=m-ou-se
bors May 27, 2021
9385be7
Update compiler/rustc_middle/src/query/mod.rs
nikomatsakis May 27, 2021
d854c3c
Auto merge of #85729 - LeSeulArtichaut:thir-no-hash, r=nikomatsakis
bors May 27, 2021
6ac83e1
Rollup merge of #85722 - GuillaumeGomez:trait-toggle, r=jsha
GuillaumeGomez May 27, 2021
e30192a
Rollup merge of #85730 - Smittyvb:iter-min-max-floats, r=m-ou-se
GuillaumeGomez May 27, 2021
48706ed
Rollup merge of #85738 - 370417:opensbd, r=m-ou-se
GuillaumeGomez May 27, 2021
e51830b
Auto merge of #85757 - GuillaumeGomez:rollup-k8hfhp8, r=GuillaumeGomez
bors May 27, 2021
027d73d
Restrict Fake Read precision
roxelo May 25, 2021
382338f
Remove feature gate
roxelo May 27, 2021
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
Improve comment
  • Loading branch information
kulikjak committed May 13, 2021

Unverified

This user has not yet uploaded their public signing key.
commit b13185de8de511c75846ae62f01b4aa6c79e1230
2 changes: 1 addition & 1 deletion src/ci/docker/host-x86_64/dist-various-2/Dockerfile
Original file line number Diff line number Diff line change
@@ -72,7 +72,7 @@ COPY host-x86_64/dist-various-2/build-fuchsia-toolchain.sh /tmp/
RUN /tmp/build-fuchsia-toolchain.sh
COPY host-x86_64/dist-various-2/build-solaris-toolchain.sh /tmp/
RUN /tmp/build-solaris-toolchain.sh x86_64 amd64 solaris-i386 pc
# Build now deprecated Solaris target as well
# Build deprecated target 'x86_64-sun-solaris2.10' until removed
RUN /tmp/build-solaris-toolchain.sh x86_64 amd64 solaris-i386 sun
RUN /tmp/build-solaris-toolchain.sh sparcv9 sparcv9 solaris-sparc sun
COPY host-x86_64/dist-various-2/build-x86_64-fortanix-unknown-sgx-toolchain.sh /tmp/