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

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
1244ced
Remove "important traits" feature
GuillaumeGomez Feb 27, 2020
13c6d58
Remove spotlight usage
GuillaumeGomez Feb 27, 2020
7859f0e
Make PlaceRef lifetimes of Place::as_ref be both 'tcx
spastorino Mar 3, 2020
812e62f
Make PlaceRef lifetimes of LocalAnalyzer::process_place be both 'tcx
spastorino Mar 3, 2020
1a1dcfa
Make PlaceRef lifetimes of codegen_place be both 'tcx
spastorino Mar 3, 2020
2af5e87
Make PlaceRef lifetimes of monomorphized_place_ty be both 'tcx
spastorino Mar 3, 2020
a20d54f
Make PlaceRef lifetimes of RootPlace be both 'tcx
spastorino Mar 3, 2020
842af36
Make PlaceRef lifetimes of borrow_conflict_place be both 'tcx
spastorino Mar 4, 2020
f54e863
Make PlaceRef lifetimes of move_error_reported be both 'tcx
spastorino Mar 4, 2020
6200f5c
Make PlaceRef lifetimes of uninitialized_error_reported be both 'tcx
spastorino Mar 4, 2020
e32ee55
Make PlaceRef lifetimes of move_path_closest_to be both 'tcx
spastorino Mar 4, 2020
634a167
Make PlaceRef lifetimes of move_path_for_place be both 'tcx
spastorino Mar 4, 2020
c6f1244
Make PlaceRef lifetimes of is_upvar_field_projection be both 'tcx
spastorino Mar 4, 2020
6f23650
Make PlaceRef lifetimes of add_moved_or_invoked_closure_note be both …
spastorino Mar 4, 2020
eb67eca
Make PlaceRef lifetimes of describe_field be both 'tcx
spastorino Mar 4, 2020
a30f55f
Make PlaceRef lifetimes of borrowed_content_source be both 'tcx
spastorino Mar 4, 2020
bd4dad4
Make PlaceRef lifetimes of move_spans be both 'tcx
spastorino Mar 4, 2020
46d85e5
Make PlaceRef lifetimes of closure_span be both 'tcx
spastorino Mar 4, 2020
a32afa3
Make PlaceRef lifetimes of classify_drop_access_kind be both 'tcx
spastorino Mar 4, 2020
a5d1e18
Make PlaceRef lifetimes of is_prefix_of be both 'tcx
spastorino Mar 4, 2020
2cb2559
Make PlaceRef lifetimes of in_projection be both 'tcx
spastorino Mar 4, 2020
b11cd0b
PlaceRef<'a, 'tcx> -> PlaceRef<'tcx>
spastorino Mar 4, 2020
c1df945
rustc_metadata: Give decoder access to whole crate store
petrochenkov Mar 2, 2020
41374d7
rustc_metadata: Move some code from `impl CrateMetadataRef` to `impl …
petrochenkov Mar 3, 2020
f77afc8
Allow ZSTs in `AllocRef`
TimDiekmann Mar 7, 2020
d32924f
Check if output is immediate value
JohnTitor Mar 8, 2020
c06fa0b
clean up E0393 explanation
GuillaumeGomez Mar 9, 2020
b974d6f
test(patterns): add borrowck tests for combination of pattern features
thekuom Mar 8, 2020
6701215
Move `analysis` to the query macro
Zoxc Feb 25, 2020
cbce217
Remove the need for `no_force`
Zoxc Feb 26, 2020
f445077
Remove the `no_force` query attribute
Zoxc Feb 26, 2020
2f12009
Add a comment to `recover`.
Zoxc Mar 9, 2020
7c60405
Add note about localization to std::fmt docs
dylnuge Mar 9, 2020
a561962
Vec::new is const tstable in 1.39 not 1.32
CAD97 Mar 10, 2020
5b08aad
Rollup merge of #69475 - Zoxc:no-no-force, r=michaelwoerister
Centril Mar 10, 2020
6115035
Rollup merge of #69514 - GuillaumeGomez:remove-spotlight, r=kinnison
Centril Mar 10, 2020
5a62aca
Rollup merge of #69677 - petrochenkov:spancode, r=eddyb
Centril Mar 10, 2020
977d69f
Rollup merge of #69714 - spastorino:place-ref-lifetime, r=oli-obk
Centril Mar 10, 2020
6ad5e69
Rollup merge of #69799 - TimDiekmann:zst, r=Amanieu
Centril Mar 10, 2020
08095f4
Rollup merge of #69817 - thekuom:test/borrow-checking-pattern-feature…
Centril Mar 10, 2020
436f2ec
Rollup merge of #69836 - JohnTitor:immediate-outputs, r=nagisa
Centril Mar 10, 2020
6f1db99
Rollup merge of #69847 - GuillaumeGomez:cleanup-e0393, r=Dylan-DPC
Centril Mar 10, 2020
20361bd
Rollup merge of #69861 - Dylnuge:dylnuge/locale-doc, r=Mark-Simulacrum
Centril Mar 10, 2020
3e9efbd
Rollup merge of #69877 - CAD97:patch-1, r=dtolnay
Centril Mar 10, 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
Make PlaceRef lifetimes of LocalAnalyzer::process_place be both 'tcx
  • Loading branch information
spastorino committed Mar 3, 2020
commit 812e62f14609fe80c49664f8b4ee5678c126c4a3
2 changes: 1 addition & 1 deletion src/librustc_codegen_ssa/mir/analyze.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ impl<Bx: BuilderMethods<'a, 'tcx>> LocalAnalyzer<'mir, 'a, 'tcx, Bx> {

fn process_place(
&mut self,
place_ref: &mir::PlaceRef<'_, 'tcx>,
place_ref: &mir::PlaceRef<'tcx, 'tcx>,
context: PlaceContext,
location: Location,
) {
Expand Down