aboutsummaryrefslogtreecommitdiff
path: root/src/dump_analysis.hpp
blob: 6d1c644ea208b5ccf6b51dbf92d3943a09d5b836 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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, const char *one_indent, const char *nl);

#endif