aboutsummaryrefslogtreecommitdiff
path: root/src/stack_report.hpp
blob: 8a644466f94e9dea3e523f914c8bda180c0e8dd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (c) 2019 Andrew Kelley
 *
 * This file is part of zig, which is MIT licensed.
 * See http://opensource.org/licenses/MIT
 */

#ifndef ZIG_STACK_REPORT_HPP
#define ZIG_STACK_REPORT_HPP

#include "all_types.hpp"
#include <stdio.h>

void zig_print_stack_report(CodeGen *g, FILE *f);

#endif