diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-12-11 00:13:43 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-12-11 00:13:43 -0500 |
| commit | 2dd85d52cc4c4c6a32704f187b41a06401400f0c (patch) | |
| tree | 9bb2423234eede3297d266c151f49bf89c0a89f0 /src/ir.hpp | |
| parent | 3cfbec3eef3e5949a457120287298233978cb236 (diff) | |
| download | zig-2dd85d52cc4c4c6a32704f187b41a06401400f0c.tar.gz zig-2dd85d52cc4c4c6a32704f187b41a06401400f0c.zip | |
IR: fix implementation of parseh
libc hello world works now
Diffstat (limited to 'src/ir.hpp')
| -rw-r--r-- | src/ir.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.hpp b/src/ir.hpp index c996e28d2f..d3445e3364 100644 --- a/src/ir.hpp +++ b/src/ir.hpp @@ -15,7 +15,7 @@ IrInstruction *ir_gen_fn(CodeGen *g, FnTableEntry *fn_entry); IrInstruction *ir_eval_const_value(CodeGen *codegen, Scope *scope, AstNode *node, TypeTableEntry *expected_type, size_t *backward_branch_count, size_t backward_branch_quota, - FnTableEntry *fn_entry); + FnTableEntry *fn_entry, Buf *c_import_buf); TypeTableEntry *ir_analyze(CodeGen *g, IrExecutable *old_executable, IrExecutable *new_executable, TypeTableEntry *expected_type, AstNode *expected_type_source_node); |
