git-subtree-dir: stage0 git-subtree-mainline:3db960767dgit-subtree-split:b3d106ec97
12 lines
220 B
C
12 lines
220 B
C
// astgen.h — AST to ZIR conversion, ported from lib/std/zig/AstGen.zig.
|
|
#ifndef _ZIG0_ASTGEN_H__
|
|
#define _ZIG0_ASTGEN_H__
|
|
|
|
#include "ast.h"
|
|
#include "zir.h"
|
|
|
|
// Convert AST to ZIR.
|
|
Zir astGen(const Ast* ast);
|
|
|
|
#endif
|