mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-29 23:04:49 +00:00
Rename gen to gen_llvm
This way, we have gen_dev and gen_llvm representing the two different compiler backends.
This commit is contained in:
parent
bff91b147d
commit
57676057fa
24 changed files with 73 additions and 70 deletions
9
compiler/gen_llvm/src/lib.rs
Normal file
9
compiler/gen_llvm/src/lib.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
#![warn(clippy::dbg_macro)]
|
||||
// See github.com/rtfeldman/roc/issues/800 for discussion of the large_enum_variant check.
|
||||
#![allow(clippy::large_enum_variant)]
|
||||
// we actually want to compare against the literal float bits
|
||||
#![allow(clippy::clippy::float_cmp)]
|
||||
|
||||
pub mod llvm;
|
||||
|
||||
pub mod run_roc;
|
Loading…
Add table
Add a link
Reference in a new issue