diff options
| author | gingerBill <bill@gingerbill.org> | 2021-07-10 15:14:25 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-07-10 15:14:25 +0100 |
| commit | 9f7154a03941f1ffad629e8e558040911e9886ba (patch) | |
| tree | 6caea41c1fa95b592e630b2f007099ae0b46f2cc /src/llvm_backend.cpp | |
| parent | 4a932616fc6d8d5c4cad98debf292a1916e5a2be (diff) | |
Prepare for multithreading the semantic checker by giving mutexes to variables of contention
NOTE(bill): I know this is dodgy, but I want to make sure it is correct logic before improve those data structures
Diffstat (limited to 'src/llvm_backend.cpp')
| -rw-r--r-- | src/llvm_backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/llvm_backend.cpp b/src/llvm_backend.cpp index ca1db269c..e1205b471 100644 --- a/src/llvm_backend.cpp +++ b/src/llvm_backend.cpp @@ -6356,7 +6356,7 @@ lbValue lb_find_value_from_entity(lbModule *m, Entity *e) { } } - GB_PANIC("\n\tError in: %s, missing value %.*s\n", token_pos_to_string(e->token.pos), LIT(e->token.string)); + GB_PANIC("\n\tError in: %s, missing value '%.*s'\n", token_pos_to_string(e->token.pos), LIT(e->token.string)); return {}; } |