Files
wasmtime/cranelift/codegen
Nick Fitzgerald e3a423c3e8 Remove some uses of foo.expect(&format!(...)) pattern
This eagerly evaluates the `format!` and produces a `String` with a heap
allocation, regardless whether `foo` is `Some`/`Ok` or `None`/`Err`. Using
`foo.unwrap_or_else(|| panic!(...))` makes it so that the error message
formatting is only evaluated if `foo` is `None`/`Err`.
2021-10-25 17:35:23 -07:00
..
2021-10-10 14:19:08 +02:00
2021-10-12 15:12:26 +02:00
2021-10-20 15:28:42 -07:00

This crate contains the core Cranelift code generator. It translates code from an intermediate representation into executable machine code.