aboutsummaryrefslogtreecommitdiff
path: root/src/ir.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-09-02 04:11:23 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-09-02 04:11:23 -0400
commite1d5da20a5d5e54b9dba6031c97fe232192e69cd (patch)
tree78d17c42ff26bed171582d31aa06647571d6cfdf /src/ir.hpp
parent0f38955ee5b5ff2251fdbc3ac4d95a9aecfdfd3c (diff)
downloadzig-e1d5da20a5d5e54b9dba6031c97fe232192e69cd.tar.gz
zig-e1d5da20a5d5e54b9dba6031c97fe232192e69cd.zip
rewrite parseh to use AST instead of direct types
some tests still failing
Diffstat (limited to 'src/ir.hpp')
-rw-r--r--src/ir.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ir.hpp b/src/ir.hpp
index 4a9de7e574..d8dfc3dcfa 100644
--- a/src/ir.hpp
+++ b/src/ir.hpp
@@ -24,6 +24,4 @@ TypeTableEntry *ir_analyze(CodeGen *g, IrExecutable *old_executable, IrExecutabl
bool ir_has_side_effects(IrInstruction *instruction);
ConstExprValue *const_ptr_pointee(CodeGen *codegen, ConstExprValue *const_val);
-FnTableEntry *ir_create_inline_fn(CodeGen *codegen, Buf *fn_name, VariableTableEntry *var, Scope *parent_scope);
-
#endif