Skip to content

Commit

Permalink
src: codegen: don't dump time to precompile stream
Browse files Browse the repository at this point in the history
  • Loading branch information
nixo committed Feb 13, 2020
1 parent 5cd4546 commit 5445b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codegen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ jl_code_instance_t *jl_compile_linfo(jl_method_instance_t *mi, jl_code_info_t *s
}
if (dump_compiles_stream != NULL) {
uint64_t this_time = jl_hrtime();
jl_printf(dump_compiles_stream, "%" PRIu64 "\t\"", this_time - last_time);
jl_printf(dump_compiles_stream, "%" PRIu64 "\t\"", 1LU);
jl_static_show(dump_compiles_stream, mi->specTypes);
jl_printf(dump_compiles_stream, "\"\n");
last_time = this_time;
Expand Down

0 comments on commit 5445b5d

Please sign in to comment.