mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
add case to emit wasm via llvm
This commit is contained in:
parent
82ca7fc8c5
commit
92afe5a46e
1 changed files with 4 additions and 1 deletions
|
@ -211,7 +211,10 @@ pub fn gen_from_mono_module<'a>(
|
|||
CodeGenBackend::Llvm => {
|
||||
gen_from_mono_module_llvm(arena, loaded, roc_file_path, target, code_gen_options)
|
||||
}
|
||||
CodeGenBackend::Wasm => unreachable!(),
|
||||
CodeGenBackend::Wasm => {
|
||||
// emit wasm via the llvm backend
|
||||
gen_from_mono_module_llvm(arena, loaded, roc_file_path, target, code_gen_options)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue