diff options
| author | gingerBill <bill@gingerbill.org> | 2018-05-28 18:46:39 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2018-05-28 18:46:39 +0100 |
| commit | 619783ca1ba783d1248297127fa8e5d0a097d7ba (patch) | |
| tree | 8d2fdea3b9d7f31a531983e7af8fe62ca757fb4b /src/ir_print.cpp | |
| parent | 642aa0bc4b47752d4ea52f97dec3d478470b597e (diff) | |
Remove clutter parameters and begin parallelizing the type checker
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index 4375cd7e1..fdbc8a950 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -772,7 +772,7 @@ void ir_print_exact_value(irFileBuffer *f, irModule *m, ExactValue value, Type * found = map_get(&m->anonymous_proc_lits, hash_pointer(expr)); } else { GB_ASSERT(expr->kind == AstNode_Ident); - Entity *e = entity_of_ident(m->info, expr); + Entity *e = entity_of_ident(expr); GB_ASSERT(e != nullptr); found = map_get(&m->values, hash_entity(e)); } |