about summary refs log tree commit diff
path: root/compiler/rustc_mir/src/interpret/traits.rs
AgeCommit message (Collapse)AuthorLines
2021-02-17remove useless ?s (clippy::needless_question_marks)Matthias Krüger-1/+1
Example code: ``` fn opts() -> Option<String> { let s: Option<String> = Some(String::new()); Some(s?) // this can just be "s" } ```
2020-12-11RustfmtJCTyblaidd-5/+1
2020-12-11Add post-initialization hook for static memory initialized using the ↵JCTyblaidd-1/+4
interpereter.
2020-11-16compiler: fold by valueBastian Kauschke-3/+3
2020-08-30mv compiler to compiler/mark-0/+182