diff options
Diffstat (limited to 'src/dump_analysis.hpp')
| -rw-r--r-- | src/dump_analysis.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/dump_analysis.hpp b/src/dump_analysis.hpp new file mode 100644 index 0000000000..44a87290e5 --- /dev/null +++ b/src/dump_analysis.hpp @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2019 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + +#ifndef ZIG_DUMP_ANALYSIS_HPP +#define ZIG_DUMP_ANALYSIS_HPP + +#include "all_types.hpp" +#include <stdio.h> + +void zig_print_stack_report(CodeGen *g, FILE *f); +void zig_print_analysis_dump(CodeGen *g, FILE *f); + +#endif |
