mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-08-26 17:26:46 -04:00
9fa941c23e
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.