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

Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
73996df
Reset Formatter flags on exit from pad_integral
Mark-Simulacrum Jan 1, 2020
d59e9b4
Implement Cursor for linked lists. (RFC 2570).
crlf0710 Jan 11, 2020
091ba6d
Address review comments.
crlf0710 Jan 12, 2020
d2c509a
Address review comments.
crlf0710 Jan 12, 2020
0810210
Diagnostics should start lowercase
varkor Jan 10, 2020
8461fa5
Diagnostics should not end with a full stop
varkor Jan 10, 2020
e842489
Add backticks in appropriate places
varkor Jan 10, 2020
3de9b8a
Fix formatting ellipses at the end of some diagnostics
varkor Jan 10, 2020
117443e
Appease tidy
varkor Jan 10, 2020
1faa05d
Update `output-default.json` and rustdoc test
varkor Jan 10, 2020
5896998
Don't run const propagation on items with inconsistent bounds
Aaron1011 Jan 6, 2020
e1fc22c
Add additional regression test
Aaron1011 Jan 7, 2020
92d86cc
Fix typo
Aaron1011 Jan 7, 2020
7df8ca2
Convert test to check-pass
Aaron1011 Jan 11, 2020
6a0bb18
Add "--emit=link"
Aaron1011 Jan 11, 2020
e390b91
Use TraitQueryMode::Canonical when testing predicates in const prop
Aaron1011 Jan 13, 2020
a6c4025
perf: eagerly convert literals to consts, this avoids creating loads …
skinnyBat Jan 11, 2020
02fffc1
Code review changes and fix rustdoc test.
skinnyBat Jan 11, 2020
2e052ee
Update some of Cargo's dependencies
alexcrichton Jan 8, 2020
72710d6
Add unreachable propagation mir optimization pass
ktrianta Jan 10, 2020
30dba97
Normalize symbol hash in ui test for legacy symbol mangling, as it's …
skinnyBat Jan 14, 2020
06b9a73
Update APIs according to RFC change suggestions.
crlf0710 Jan 14, 2020
583a4fc
Fix normalizing 32bit symbol hash.
skinnyBat Jan 14, 2020
d0d3245
Rollup merge of #66329 - ktrianta:mir-opt-unreachable-propagation, r=…
Dylan-DPC Jan 14, 2020
07408bb
Rollup merge of #67784 - Mark-Simulacrum:residual-pad-integral, r=dto…
Dylan-DPC Jan 14, 2020
124a884
Rollup merge of #67914 - Aaron1011:fix/const-prop-impossible, r=matth…
Dylan-DPC Jan 14, 2020
9b84f0d
Rollup merge of #68012 - alexcrichton:update-some-deps, r=Mark-Simula…
Dylan-DPC Jan 14, 2020
df00d40
Rollup merge of #68096 - varkor:diagnostic-cleanup, r=Centril
Dylan-DPC Jan 14, 2020
3681428
Rollup merge of #68118 - skinny121:eager_lit_eval, r=varkor
Dylan-DPC Jan 14, 2020
e083990
Rollup merge of #68123 - crlf0710:linked_list_cursor, r=Amanieu
Dylan-DPC Jan 14, 2020
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
Fix typo
  • Loading branch information
Aaron1011 committed Jan 13, 2020
commit 92d86cc9b8bbd744c5eebf3718a9dc87576b786c
2 changes: 1 addition & 1 deletion src/librustc_mir/transform/const_prop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ impl<'tcx> MirPass<'tcx> for ConstProp {
return;
}

// Check if it's even possible to satisy the 'where' clauses
// Check if it's even possible to satisfy the 'where' clauses
// for this item.
// This branch will never be taken for any normal function.
// However, it's possible to `#!feature(trivial_bounds)]` to write
Expand Down