Files
wasmer/lib/compiler-llvm
Nick Lewycky ae6f0dadb2 Stop naming instructions with numbered names.
LLVM will number instructions if you don't provide a name, so we get %7 instead of %s7 from calling state.var_name(). LLVM doesn't assign the numbers until printing out the LLVM IR as text, which we never do in a normal run of wasmer.

If you're editing a .ll text by hand and you're worried about messing up the numbering, use `opt --instnamer` to assign autogenerated names to all numbered instructions.
2020-05-19 09:54:20 -07:00
..
2020-04-21 21:37:33 -07:00
2020-04-21 22:13:57 -07:00

Wasmer Compiler - LLVM

This is the wasmer-compiler-llvm crate, which contains a compiler implementation based on LLVM.