diff options
| author | gingerBill <bill@gingerbill.org> | 2017-11-30 19:53:40 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-11-30 19:53:40 +0000 |
| commit | e00d88d82efc5f3400b158a5f601ea6c73214442 (patch) | |
| tree | 8d51ebfcba06a66221e53ea49f0b8ddf8bbf9073 /src/ir.cpp | |
| parent | 04cce1826b649e4780e4673f68f9f5e5299f5aaf (diff) | |
Fix issue #157
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index 1b2705d04..6f23b0bc0 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -4828,7 +4828,7 @@ irValue *ir_build_expr(irProcedure *proc, AstNode *expr) { GB_ASSERT_MSG(e != nullptr, "%s", expr_to_string(expr)); if (e->kind == Entity_Builtin) { Token token = ast_node_token(expr); - GB_PANIC("TODO(bill): ir_build_single_expr Entity_Builtin '%.*s'\n" + GB_PANIC("TODO(bill): ir_build_expr Entity_Builtin '%.*s'\n" "\t at %.*s(%td:%td)", LIT(builtin_procs[e->Builtin.id].name), LIT(token.pos.file), token.pos.line, token.pos.column); return nullptr; |