index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
Age
Commit message (
Expand
)
Author
Lines
2020-03-21
move more logic into declare_arena!
Mazdak Farrokhzad
-62
/
+62
2020-03-21
merge impl_arena_allocatable & declare_arena
Mazdak Farrokhzad
-16
/
+10
2020-03-21
move DropArena -> libarena
Mazdak Farrokhzad
-86
/
+82
2020-03-21
remove unused unit values (clippy::unused_unit)
Matthias Krüger
-35
/
+11
2020-03-21
make some let-if-bindings more idiomatic (clippy::useless_let_if_seq)
Matthias Krüger
-46
/
+41
2020-03-21
clarify when we pass () to functions (clippy::unit_arg)
Matthias Krüger
-10
/
+14
2020-03-21
Deduplicate test and primary range_search definitions
Mark Rousskov
-101
/
+103
2020-03-21
Allow `hir().find` to return `None`
John Kåre Alsaker
-19
/
+56
2020-03-21
Return NonZeroU64 from ThreadId::as_u64.
Thomas Bächler
-4
/
+4
2020-03-21
Add a test for out-of-line module passed through a proc macro
Vadim Petrochenkov
-0
/
+13
2020-03-21
Add missing -Z unstable-options flag
Alex Tokarev
-1
/
+6
2020-03-21
resolve: Avoid "self-confirming" import resolutions in one more case
Vadim Petrochenkov
-0
/
+24
2020-03-21
Validate git setup before accessing functionality
Dillon Amburgey
-11
/
+43
2020-03-21
Add a right shift mapping
Mark Rousskov
-833
/
+814
2020-03-21
Tweak wording for std::io::Read::read function
adrian5
-1
/
+1
2020-03-21
Add explanation message for E0224
Nixon Enraght-Moony
-3
/
+24
2020-03-21
slightly change the `Iterator::map_while` docs
Waffle
-14
/
+4
2020-03-21
Shrink bitset words through functional mapping
Mark Rousskov
-432
/
+1211
2020-03-21
don't redundantly repeat field names (clippy::redundant_field_names)
Matthias Krüger
-3
/
+3
2020-03-21
remove redundant returns (clippy::needless_return)
Matthias Krüger
-7
/
+5
2020-03-21
use let instead of match for matches with single bindings (clippy::match_sing...
Matthias Krüger
-12
/
+16
2020-03-21
Remove CARGO_BUILD_TARGET from bootstrap.py
lzutao
-0
/
+4
2020-03-21
don't convert results to options just for matching (clippy::if_let_some_result)
Matthias Krüger
-2
/
+2
2020-03-21
Bless tests
LeSeulArtichaut
-115
/
+68
2020-03-21
Test pretty printing more and fix overzealous type substitution
Stein Somers
-3
/
+11
2020-03-21
Only display definition on typo
LeSeulArtichaut
-1
/
+1
2020-03-21
symbol_names: treat ReifyShim like VtableShim.
Eduard-Mihai Burtescu
-8
/
+18
2020-03-21
Improve tests display for rustdoc-js-std tester
Guillaume Gomez
-0
/
+1
2020-03-21
Pick the last version of the different files if there is more than one
Guillaume Gomez
-2
/
+22
2020-03-21
rustc_typeck: move comment about inference variables to where it makes sense.
Eduard-Mihai Burtescu
-3
/
+7
2020-03-21
rustc: make {Closure,Generator}Substs::split as cheap as possible.
Eduard-Mihai Burtescu
-67
/
+31
2020-03-21
Clean up rustdoc js tester source code and move common code in one place
Guillaume Gomez
-589
/
+330
2020-03-21
rustc: keep upvars tupled in {Closure,Generator}Substs.
Eduard-Mihai Burtescu
-332
/
+353
2020-03-21
fix type of const params in associated types.
Bastian Kauschke
-4
/
+54
2020-03-21
Rollup merge of #70119 - eddyb:typeck-tables-local-def-id, r=petrochenkov
Dylan DPC
-125
/
+94
2020-03-21
Rollup merge of #70032 - lcnr:issue69970, r=varkor
Dylan DPC
-37
/
+84
2020-03-21
Rollup merge of #69955 - alexcrichton:stderr-infallible, r=sfackler
Dylan DPC
-100
/
+149
2020-03-21
Rollup merge of #69910 - cjgillot:polym, r=Zoxc
Dylan DPC
-201
/
+226
2020-03-21
Rollup merge of #69901 - RalfJung:rustc_layout, r=eddyb
Dylan DPC
-8
/
+356
2020-03-21
Rollup merge of #69497 - Zoxc:ast-fragment-error, r=petrochenkov
Dylan DPC
-8
/
+38
2020-03-21
Rename `cast_from_int` to `cast_from_int_like`
Wesley Wiser
-3
/
+5
2020-03-21
Fix ICE caused by truncating a negative ZST enum discriminant
Wesley Wiser
-2
/
+56
2020-03-21
Fix deprecated Error.description() usage in docs
Marti Raudsepp
-1
/
+1
2020-03-21
normalize away preferred alignment
Ralf Jung
-28
/
+13
2020-03-21
recover on `for<'a> |...| body` closures.
Mazdak Farrokhzad
-14
/
+66
2020-03-21
ast: Compress `AttrId` from `usize` to `u32`
Vadim Petrochenkov
-18
/
+12
2020-03-21
traits/fulfill: add a couple FIXME comments about potential optimizations.
Eduard-Mihai Burtescu
-0
/
+5
2020-03-21
traits/fulfill: allow `stalled_on` to track `ty::Const::Infer(_)` (unused yet).
Eduard-Mihai Burtescu
-38
/
+96
2020-03-21
infer: export methods on `InferCtxt` instead of `ShallowResolver`.
Eduard-Mihai Burtescu
-38
/
+29
2020-03-21
Rollup merge of #70151 - Amanieu:stdarch, r=sfackler
Mazdak Farrokhzad
-0
/
+0
[prev]
[next]