@@ -272,24 +272,24 @@ for mir::StatementKind<'gcx> {
272
272
mem:: discriminant ( self ) . hash_stable ( hcx, hasher) ;
273
273
274
274
match * self {
275
- mir:: StatementKind :: Assign ( ref lvalue , ref rvalue) => {
276
- lvalue . hash_stable ( hcx, hasher) ;
275
+ mir:: StatementKind :: Assign ( ref place , ref rvalue) => {
276
+ place . hash_stable ( hcx, hasher) ;
277
277
rvalue. hash_stable ( hcx, hasher) ;
278
278
}
279
- mir:: StatementKind :: SetDiscriminant { ref lvalue , variant_index } => {
280
- lvalue . hash_stable ( hcx, hasher) ;
279
+ mir:: StatementKind :: SetDiscriminant { ref place , variant_index } => {
280
+ place . hash_stable ( hcx, hasher) ;
281
281
variant_index. hash_stable ( hcx, hasher) ;
282
282
}
283
- mir:: StatementKind :: StorageLive ( ref lvalue ) |
284
- mir:: StatementKind :: StorageDead ( ref lvalue ) => {
285
- lvalue . hash_stable ( hcx, hasher) ;
283
+ mir:: StatementKind :: StorageLive ( ref place ) |
284
+ mir:: StatementKind :: StorageDead ( ref place ) => {
285
+ place . hash_stable ( hcx, hasher) ;
286
286
}
287
287
mir:: StatementKind :: EndRegion ( ref region_scope) => {
288
288
region_scope. hash_stable ( hcx, hasher) ;
289
289
}
290
- mir:: StatementKind :: Validate ( ref op, ref lvalues ) => {
290
+ mir:: StatementKind :: Validate ( ref op, ref places ) => {
291
291
op. hash_stable ( hcx, hasher) ;
292
- lvalues . hash_stable ( hcx, hasher) ;
292
+ places . hash_stable ( hcx, hasher) ;
293
293
}
294
294
mir:: StatementKind :: Nop => { }
295
295
mir:: StatementKind :: InlineAsm { ref asm, ref outputs, ref inputs } => {
@@ -309,7 +309,7 @@ impl<'gcx, T> HashStable<StableHashingContext<'gcx>>
309
309
hcx : & mut StableHashingContext < ' gcx > ,
310
310
hasher : & mut StableHasher < W > )
311
311
{
312
- self . lval . hash_stable ( hcx, hasher) ;
312
+ self . place . hash_stable ( hcx, hasher) ;
313
313
self . ty . hash_stable ( hcx, hasher) ;
314
314
self . re . hash_stable ( hcx, hasher) ;
315
315
self . mutbl . hash_stable ( hcx, hasher) ;
@@ -330,8 +330,8 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for mir::Place<'gcx> {
330
330
mir:: Place :: Static ( ref statik) => {
331
331
statik. hash_stable ( hcx, hasher) ;
332
332
}
333
- mir:: Place :: Projection ( ref lvalue_projection ) => {
334
- lvalue_projection . hash_stable ( hcx, hasher) ;
333
+ mir:: Place :: Projection ( ref place_projection ) => {
334
+ place_projection . hash_stable ( hcx, hasher) ;
335
335
}
336
336
}
337
337
}
@@ -420,11 +420,11 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for mir::Operand<'gcx> {
420
420
mem:: discriminant ( self ) . hash_stable ( hcx, hasher) ;
421
421
422
422
match * self {
423
- mir:: Operand :: Copy ( ref lvalue ) => {
424
- lvalue . hash_stable ( hcx, hasher) ;
423
+ mir:: Operand :: Copy ( ref place ) => {
424
+ place . hash_stable ( hcx, hasher) ;
425
425
}
426
- mir:: Operand :: Move ( ref lvalue ) => {
427
- lvalue . hash_stable ( hcx, hasher) ;
426
+ mir:: Operand :: Move ( ref place ) => {
427
+ place . hash_stable ( hcx, hasher) ;
428
428
}
429
429
mir:: Operand :: Constant ( ref constant) => {
430
430
constant. hash_stable ( hcx, hasher) ;
@@ -447,13 +447,13 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for mir::Rvalue<'gcx> {
447
447
operand. hash_stable ( hcx, hasher) ;
448
448
val. hash_stable ( hcx, hasher) ;
449
449
}
450
- mir:: Rvalue :: Ref ( region, borrow_kind, ref lvalue ) => {
450
+ mir:: Rvalue :: Ref ( region, borrow_kind, ref place ) => {
451
451
region. hash_stable ( hcx, hasher) ;
452
452
borrow_kind. hash_stable ( hcx, hasher) ;
453
- lvalue . hash_stable ( hcx, hasher) ;
453
+ place . hash_stable ( hcx, hasher) ;
454
454
}
455
- mir:: Rvalue :: Len ( ref lvalue ) => {
456
- lvalue . hash_stable ( hcx, hasher) ;
455
+ mir:: Rvalue :: Len ( ref place ) => {
456
+ place . hash_stable ( hcx, hasher) ;
457
457
}
458
458
mir:: Rvalue :: Cast ( cast_kind, ref operand, ty) => {
459
459
cast_kind. hash_stable ( hcx, hasher) ;
@@ -470,8 +470,8 @@ impl<'gcx> HashStable<StableHashingContext<'gcx>> for mir::Rvalue<'gcx> {
470
470
op. hash_stable ( hcx, hasher) ;
471
471
operand. hash_stable ( hcx, hasher) ;
472
472
}
473
- mir:: Rvalue :: Discriminant ( ref lvalue ) => {
474
- lvalue . hash_stable ( hcx, hasher) ;
473
+ mir:: Rvalue :: Discriminant ( ref place ) => {
474
+ place . hash_stable ( hcx, hasher) ;
475
475
}
476
476
mir:: Rvalue :: NullaryOp ( op, ty) => {
477
477
op. hash_stable ( hcx, hasher) ;
0 commit comments