12 lines
278 B
C
12 lines
278 B
C
#pragma once
|
|
#include <stddef.h>
|
|
|
|
struct context;
|
|
struct function;
|
|
struct node;
|
|
|
|
void emit_store(struct function *fn, int kind, size_t index);
|
|
|
|
void emit(struct function *fn, struct context *ctx, struct node *expr);
|
|
void emit_function(struct context *ctx, struct function *fn);
|