Files
wasmtime/cranelift/reader
Chris Fallin 51649d56b7 Add syntax for cold blocks to CLIF.
This commit adds support for denoting cold blocks in the CLIF text
format as follows:

```plain

function %f() {
block0(...):
  ...

block1 cold:
  ...

block2(...) cold:
  ...

block3:
  ...
```

With this syntax, we are able to see the cold-block flag in CLIF, we can
write tests using it, and it is preserved when round-tripping.

Fixes #3701.
2022-01-20 16:49:52 -08:00
..
2022-01-20 16:49:52 -08:00
2022-01-05 13:26:50 -06:00

This crate library supports reading .clif files. This functionality is needed for testing Cranelift, but is not essential for a JIT compiler.