rust/compiler/rustc_mir_transform
Dylan DPC 9fa941c23e
Rollup merge of #95649 - ouz-a:mir-opt, r=oli-obk
New mir-opt deref_separator

This adds a new mir-opt that split certain derefs into this form:
`let x = (*a.b).c;` to => `tmp = a.b; let x = (*tmp).c;`

Huge thanks to ``@oli-obk`` for his patient mentoring.
2022-04-06 23:06:06 +02:00
..
src Rollup merge of #95649 - ouz-a:mir-opt, r=oli-obk 2022-04-06 23:06:06 +02:00
Cargo.toml Update itertools 2022-03-04 11:54:28 -06:00