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
..
2022-03-30 15:14:15 -04:00
2022-03-30 15:14:15 -04:00
2022-04-05 22:38:03 +03:00
2022-03-01 07:43:12 -03:00
2022-03-30 15:14:15 -04:00
2022-04-04 18:51:32 +03:00
2022-03-30 15:14:15 -04:00
2022-02-19 17:27:43 +01:00
2022-02-15 16:03:24 +11:00
2022-03-11 13:31:24 +11:00
2022-02-19 17:27:43 +01:00