Skip to content

Commit

Permalink
wip debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Oct 9, 2020
1 parent 2719879 commit 8a9229f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jltypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -812,6 +812,8 @@ void jl_rehash_type_cache(jl_typename_t *name)
{
size_t sz = jl_svec_len(name->cache);
jl_svec_t *newa = cache_rehash_set(name->cache, sz);
if (jl_svec_len(newa) != sz)
printf("%s %ld %ld\n", jl_symbol_name(name->name), sz, jl_svec_len(newa));
assert(jl_svec_len(newa) == sz);
size_t i;
for (i = 0; i < sz; i++)
Expand Down

0 comments on commit 8a9229f

Please sign in to comment.