We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d040151 commit d363535Copy full SHA for d363535
test/codegen.jl
@@ -3,7 +3,7 @@
3
# tests for codegen and optimizations
4
5
const opt_level = Base.JLOptions().opt_level
6
-const coverage = Base.JLOptions().code_coverage || Base.JLOptions().malloc_log
+const coverage = Bool(Base.JLOptions().code_coverage) || Bool(Base.JLOptions().malloc_log)
7
const Iptr = sizeof(Int) == 8 ? "i64" : "i32"
8
9
# `_dump_function` might be more efficient but it doesn't really matter here...
0 commit comments