about summary refs log tree commit diff
path: root/src/test/mir-opt/inline/inline_shims.clone.Inline.diff
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-26/+0
2022-12-25Give the correct track-caller location with MIR inlining.Camille GILLOT-1/+1
2022-11-02Ban dashes in miropt test file namesJakob Degen-10/+10
2022-09-26address reviewb-naber-1/+1
2022-08-02Avoid invalidating the CFG in MirPatch.Jakob Degen-4/+0
As a part of this change, we adjust MirPatch to not needlessly create unnecessary resume blocks.
2022-07-28bless mir opt testsNilstrieb-9/+9
2022-07-09tweak names and output and blessRalf Jung-1/+1
2022-05-30validate derefer, run derefer inside generatorouz-a-0/+4
2022-02-27Only create a single expansion for each inline integration.Camille GILLOT-1/+1
2022-02-22change `mir::Constant` in mir dumpslcnr-1/+1
2021-09-25Use larger span for adjustments on method callsAaron Hill-3/+3
Currently, we use a relatively 'small' span for THIR expressions generated by an 'adjustment' (e.g. an autoderef, autoborrow, unsizing). As a result, if a borrow generated by an adustment ends up causing a borrowcheck error, for example: ```rust let mut my_var = String::new(); let my_ref = &my_var my_var.push('a'); my_ref; ``` then the span for the mutable borrow may end up referring to only the base expression (e.g. `my_var`), rather than the method call which triggered the mutable borrow (e.g. `my_var.push('a')`) Due to a quirk of the MIR borrowck implementation, this doesn't always get exposed in migration mode, but it does in many cases. This commit makes THIR building consistently use 'larger' spans for adjustment expressions The intent of this change it make it clearer to users when it's the specific way in which a variable is used (for example, in a method call) that produdes a borrowcheck error. For example, an error message claiming that a 'mutable borrow occurs here' might be confusing if it just points at a usage of a variable (e.g. `my_var`), when no `&mut` is in sight. Pointing at the entire expression should help to emphasize that the method call itself is responsible for the mutable borrow. In several cases, this makes the `#![feature(nll)]` diagnostic output match up exactly with the default (migration mode) output. As a result, several `.nll.stderr` files end up getting removed entirely.
2020-11-06inliner: Use substs_for_mir_bodyTomasz Miąsko-0/+26
Changes from 68965 extended the kind of instances that are being inlined. For some of those, the `instance_mir` returns a MIR body that is already expressed in terms of the types found in substitution array, and doesn't need further substitution. Use `substs_for_mir_body` to take that into account.