]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_mir/borrow_check/location.rs
Rollup merge of #61704 - petrhosek:llvm-linker-flags, r=alexcrichton
[rust.git] / src / librustc_mir / borrow_check / location.rs
index feade0d2a4aeea4f8c992a8815a184f18804800e..cc44dc3f5d46bd34be686d7bcea9a36281710d7e 100644 (file)
@@ -30,9 +30,9 @@ pub struct LocationIndex {
 }
 
 impl LocationTable {
-    crate fn new(mir: &Body<'_>) -> Self {
+    crate fn new(body: &Body<'_>) -> Self {
         let mut num_points = 0;
-        let statements_before_block = mir.basic_blocks()
+        let statements_before_block = body.basic_blocks()
             .iter()
             .map(|block_data| {
                 let v = num_points;