mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-22 04:44:06 +00:00
13 lines
475 B
Rust
13 lines
475 B
Rust
//! Provides the LLVM backend to generate Roc binaries. Used to generate a
|
|
//! binary with the fastest possible execution speed.
|
|
#![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)]
|
|
// Not a useful lint for us
|
|
#![allow(clippy::too_many_arguments)]
|
|
|
|
pub mod llvm;
|
|
|
|
pub mod run_roc;
|