Skip to content

Commit

Permalink
Improve calling conv error prints
Browse files Browse the repository at this point in the history
  • Loading branch information
wsmoses committed May 15, 2024
1 parent 67ca3a1 commit cc8ceb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -285,8 +285,8 @@ function calling_conv_fixup(builder, val::LLVM.Value, tape::LLVM.LLVMType, prev:
end
println(io, "ctype = ", ctype)
println(io, "tape = ", tape)
println(io, "val = ", val)
println(io, "prev = ", prev)
println(io, "val = ", string(val))
println(io, "prev = ", string(prev))
println(io, "lidxs = ", lidxs)
println(io, "ridxs = ", ridxs)
println(io, "tape_type(tape) = ", tape_type(tape))
Expand Down

0 comments on commit cc8ceb6

Please sign in to comment.