aboutsummaryrefslogtreecommitdiff
path: root/src/ir_print.hpp
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2017-04-23 13:22:36 -0400
committerAndrew Kelley <superjoe30@gmail.com>2017-04-23 14:34:40 -0400
commit6de33ded81981554ccffc3ecbfcd5b0f628cf502 (patch)
tree520cfac3890b90d5357866a6c4b6e7e9509ee735 /src/ir_print.hpp
parent2ed47070efa5933365da724e79f6ed87d603ee27 (diff)
downloadzig-6de33ded81981554ccffc3ecbfcd5b0f628cf502.tar.gz
zig-6de33ded81981554ccffc3ecbfcd5b0f628cf502.zip
make undefined as a constant value lazy
closes #268
Diffstat (limited to 'src/ir_print.hpp')
-rw-r--r--src/ir_print.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir_print.hpp b/src/ir_print.hpp
index 7126b1e57f..5ff33e3068 100644
--- a/src/ir_print.hpp
+++ b/src/ir_print.hpp
@@ -12,6 +12,6 @@
#include <stdio.h>
-void ir_print(FILE *f, IrExecutable *executable, int indent_size);
+void ir_print(CodeGen *codegen, FILE *f, IrExecutable *executable, int indent_size);
#endif