roc/crates/compiler/gen_llvm/src/lib.rs
2022-08-12 15:24:09 -04:00

9 lines
280 B
Rust

#![warn(clippy::dbg_macro)]
// See github.com/roc-lang/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::float_cmp)]
pub mod llvm;
pub mod run_roc;