mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
parent
8317c4d038
commit
0bb31558e6
2 changed files with 8 additions and 2 deletions
|
@ -1,4 +1,7 @@
|
|||
#![cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
#![cfg(all(
|
||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||
))]
|
||||
|
||||
#[cfg(feature = "gen-llvm")]
|
||||
use crate::helpers::llvm::assert_evals_to;
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#![cfg(feature = "gen-llvm")]
|
||||
#![cfg(all(
|
||||
any(feature = "gen-llvm"),
|
||||
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||
))]
|
||||
|
||||
#[cfg(feature = "gen-llvm")]
|
||||
use crate::helpers::llvm::assert_evals_to;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue