Skip to content

Commit

Permalink
Fix broken use of Int8 as boolean in codegen test
Browse files Browse the repository at this point in the history
0737032 was pushed straight to master without going through CI
or even local testing
  • Loading branch information
tkelman committed Jun 24, 2017
1 parent d040151 commit d363535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/codegen.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# tests for codegen and optimizations

const opt_level = Base.JLOptions().opt_level
const coverage = Base.JLOptions().code_coverage || Base.JLOptions().malloc_log
const coverage = Bool(Base.JLOptions().code_coverage) || Bool(Base.JLOptions().malloc_log)
const Iptr = sizeof(Int) == 8 ? "i64" : "i32"

# `_dump_function` might be more efficient but it doesn't really matter here...
Expand Down

0 comments on commit d363535

Please sign in to comment.