1 /*
2  * Copyright (c) 2019 Andrew Kelley
3  *
4  * This file is part of zig, which is MIT licensed.
5  * See http://opensource.org/licenses/MIT
6  */
7 
8 #ifndef ZIG_DUMP_ANALYSIS_HPP
9 #define ZIG_DUMP_ANALYSIS_HPP
10 
11 #include "all_types.hpp"
12 #include <stdio.h>
13 
14 void zig_print_stack_report(CodeGen *g, FILE *f);
15 void zig_print_analysis_dump(CodeGen *g, FILE *f, const char *one_indent, const char *nl);
16 
17 #endif
18