aboutsummaryrefslogtreecommitdiff
path: root/src/ir.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-09-05 18:34:33 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-09-05 18:34:33 -0400
commit3500d32db52eaf485b5cff2a26d382b37cfb85a3 (patch)
tree7bd26c47ca1c52f837eb28abc4ac9ab184a1e130 /src/ir.hpp
parentdb882e5d63d2840b1410a2574fd12d973b7f3ee2 (diff)
downloadzig-3500d32db52eaf485b5cff2a26d382b37cfb85a3.tar.gz
zig-3500d32db52eaf485b5cff2a26d382b37cfb85a3.zip
stage1: rename FnTableEntry to ZigFn
Diffstat (limited to 'src/ir.hpp')
-rw-r--r--src/ir.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ir.hpp b/src/ir.hpp
index a519ed2958..b298750dec 100644
--- a/src/ir.hpp
+++ b/src/ir.hpp
@@ -11,11 +11,11 @@
#include "all_types.hpp"
bool ir_gen(CodeGen *g, AstNode *node, Scope *scope, IrExecutable *ir_executable);
-bool ir_gen_fn(CodeGen *g, FnTableEntry *fn_entry);
+bool ir_gen_fn(CodeGen *g, ZigFn *fn_entry);
IrInstruction *ir_eval_const_value(CodeGen *codegen, Scope *scope, AstNode *node,
ZigType *expected_type, size_t *backward_branch_count, size_t backward_branch_quota,
- FnTableEntry *fn_entry, Buf *c_import_buf, AstNode *source_node, Buf *exec_name,
+ ZigFn *fn_entry, Buf *c_import_buf, AstNode *source_node, Buf *exec_name,
IrExecutable *parent_exec);
ZigType *ir_analyze(CodeGen *g, IrExecutable *old_executable, IrExecutable *new_executable,