Ralf Jung
19ebe2fb6d
clarify why we can do the ptr cast
2019-11-13 09:07:52 +01:00
Ralf Jung
aba385abbd
Trailing full stop
...
Co-Authored-By: Mazdak Farrokhzad <twingoow@gmail.com >
2019-11-13 09:05:57 +01:00
bors
374ad1b006
Auto merge of #65637 - ssomers:master, r=scottmcm
...
proposal for BTreeMap/Set min/max, #62924
- Which pair of names: #62924 lists the existing possibilities min/max, first/last, (EDIT) front/back, peek(/peek_back?). Iterators have next/next_back or next/last. I'm slightly in favour of first/last because min/max might suggest they search over the entire map, and front/back pretends they are only about position.
- Return key only instead of pair like iterator does?
- If not, then keep the _key_value suffix? ~~Also provide variant with mutable value? But there is no such variant for get_key_value.~~
- Look for and upgrade more usages of `.iter().next()` and such in the libraries? I only upgraded the ones I contributed myself, all very recently.
2019-11-13 03:48:42 +00:00
Dylan DPC
fd868d4bf4
tidy up!
2019-11-13 02:16:01 +01:00
Dylan DPC
1de094a28e
Update error_codes.rs
2019-11-13 01:50:12 +01:00
Dylan DPC
6a3a05580e
Update error_codes.rs
2019-11-13 01:47:25 +01:00
bors
0f12bad718
Auto merge of #66156 - Mark-Simulacrum:stage0-step, r=pietroalbini
...
Stage0 step
r? @pietroalbini
2019-11-13 00:42:19 +00:00
Yuki Okushi
302cf6db74
Tweak non-char/numeric in range pattern diagnostic
2019-11-13 08:27:53 +09:00
Stefan Lankes
8871731914
Merge remote-tracking branch 'rust-lang/master' into hermit
2019-11-13 00:24:37 +01:00
Stefan Lankes
969b741446
protect creation of destructors by a mutex
...
add on HermizCore an additional lock to protect static data
2019-11-13 00:21:05 +01:00
Andy Russell
fe4b709c0c
expand source_util macros with def-site context
2019-11-12 17:48:33 -05:00
Mark Rousskov
994d83666d
Remove no longer needed mutability
2019-11-12 16:37:22 -05:00
Mark Rousskov
f6832adadb
Compiletest bump to stage0 bootstrap libtest
2019-11-12 16:36:57 -05:00
Mark Rousskov
8783766215
Hopefully fix rustdoc build
...
It's super unclear why this broke when we switched to beta but not
previously -- but at least it's hopefully fixed now.
2019-11-12 16:36:57 -05:00
Mark Rousskov
997feacddd
Snap cfgs
2019-11-12 16:36:57 -05:00
Mark Rousskov
f4edc81ac4
Bump version to 1.41
2019-11-12 16:36:57 -05:00
bors
a333eed7fc
Auto merge of #60026 - Aaron1011:feature/miri-unwind, r=RalfJung,oli-obk
...
Add hooks for Miri panic unwinding
This commits adds in some additional hooks to allow Miri to properly
handle panic unwinding. None of this should have any impact on CTFE mode
This supports https://github.com/rust-lang/miri/pull/693
2019-11-12 21:27:04 +00:00
Camille GILLOT
552fa64798
Bless mir-dump test.
2019-11-12 22:02:55 +01:00
Camille GILLOT
a1af690ab3
Bless symbol-names.
2019-11-12 20:50:47 +01:00
Camille GILLOT
4caa66f25d
Centril review.
2019-11-12 20:50:47 +01:00
Camille GILLOT
6b56dced4c
Fix tidy.
2019-11-12 20:50:47 +01:00
Camille GILLOT
f9ff78bdd5
Remove cruft.
2019-11-12 20:50:47 +01:00
Camille GILLOT
3ebfa1856e
Rename in librustdoc.
2019-11-12 20:50:47 +01:00
Camille GILLOT
1f2c18cdbd
Rename in librustc_codegen_llvm.
2019-11-12 20:50:46 +01:00
Camille GILLOT
25fab7ecf5
Rename in librustc_codegen_ssa.
2019-11-12 20:50:46 +01:00
Camille GILLOT
c67125260b
Rename in librustc_codegen_utils.
2019-11-12 20:50:46 +01:00
Camille GILLOT
7378c25f25
Rename in librustc_mir.
2019-11-12 20:50:45 +01:00
Camille GILLOT
028c83cdf6
Rename in librustc_typecheck.
2019-11-12 20:14:53 +01:00
Camille GILLOT
ff6b7cd7c1
Rename in librustc_traits.
2019-11-12 20:14:53 +01:00
Camille GILLOT
ee33e0279a
Refactor pretty_print_const.
2019-11-12 20:14:53 +01:00
Camille GILLOT
e5fb784823
Create intermediate enum ty::ConstKind.
2019-11-12 20:14:52 +01:00
Eric Huss
32d1f47a06
Fix mdbook-linkcheck license checks.
2019-11-12 10:45:33 -08:00
Eric Huss
139477df64
Update mdbook.
2019-11-12 10:14:48 -08:00
Mark Rousskov
2fd545485a
Register queries with self profiler in rustc_interface
2019-11-12 13:13:14 -05:00
Mark Rousskov
8c29b74b15
Remove dead code for encoding/decoding lint IDs
...
This helps decouple the lint system from needing the implicit TLS TyCtxt
as well.
2019-11-12 13:04:31 -05:00
bors
4f03f4a989
Auto merge of #65608 - matthewjasper:mir-eval-order, r=pnkfelix
...
Fix MIR lowering evaluation order and soundness bug
* Fixes a soundness issue with built-in index operations
* Ensures correct evaluation order of assignment expressions where the RHS is a FRU or is a use of a local of reference type.
* Removes an unnecessary symbol to string conversion
closes #65909
closes #65910
2019-11-12 18:02:54 +00:00
Eric Huss
e0f2f9d363
Update Cargo, books
2019-11-12 09:57:41 -08:00
Mark Rousskov
f696b21c5f
Move self-profile infrastructure to data structures
...
The single dependency on queries (QueryName) can be fairly easily
abstracted via a trait and this further decouples Session from librustc
(the primary goal).
2019-11-12 12:48:04 -05:00
Josh Stone
bfa5e5f788
Fallback to the unmodified path in bindir_relative
2019-11-12 09:42:46 -08:00
Mark Mansi
b84c96a91b
update rustc-guide
2019-11-12 10:46:24 -06:00
csmoe
9124f7a096
update suggestion ui test
2019-11-13 00:38:37 +08:00
Yuki Okushi
74d45afbf5
Add test for issue-63279
2019-11-13 00:37:00 +09:00
Yuki Okushi
412f0006f5
Add test for issue-52432
2019-11-13 00:36:38 +09:00
Yuki Okushi
bae9832f71
Add test for issue-40231
2019-11-13 00:36:20 +09:00
Yuki Okushi
ec45882b42
Add test for issue-30904
2019-11-13 00:35:57 +09:00
Nadrieril
e398d897b0
Move NonExhaustive checks to the relevant match branches
2019-11-12 15:02:00 +00:00
Nadrieril
357d53c4ce
Introduce Constructor::NonExhaustive
...
It counts as an extra constructor for types that are not allowed to be
matched exhaustively.
2019-11-12 15:02:00 +00:00
Nadrieril
eb99c73e04
Match constructor first in Constructor methods
...
This makes it easier to add new non-standard constructors, and this also
ensures that we don't forget cases when adding a new constructor.
2019-11-12 15:02:00 +00:00
bors
5dda3ee931
Auto merge of #66318 - mati865:llvm-update, r=matthewjasper
...
Update LLVM submodule
Fixes https://github.com/rust-lang/rust/issues/66315
2019-11-12 12:55:02 +00:00
Santiago Pastorino
695e91a1d5
check-consts remove cannot mutate statics in initializer of another static error
2019-11-12 13:20:52 +01:00