diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2016-12-18 16:56:50 -0500 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2016-12-18 16:56:50 -0500 |
| commit | e50ced44a2cf6268c19df901ad56b367d8d802fe (patch) | |
| tree | b4bd67b3a0a8bdbc853dba760c0d66a406e11d4a /src/ir.hpp | |
| parent | 2e6aa6d813cf3fd4180b8c9ffc671b4bcee54586 (diff) | |
| download | zig-e50ced44a2cf6268c19df901ad56b367d8d802fe.tar.gz zig-e50ced44a2cf6268c19df901ad56b367d8d802fe.zip | |
IR: all structs anonymous
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 bb79a6ed53..69e8115bf8 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, Buf *c_import_buf, AstNode *source_node); + FnTableEntry *fn_entry, Buf *c_import_buf, AstNode *source_node, Buf *exec_name); TypeTableEntry *ir_analyze(CodeGen *g, IrExecutable *old_executable, IrExecutable *new_executable, TypeTableEntry *expected_type, AstNode *expected_type_source_node); |
