ref: 4e77e2893bf01a51a32326effbac1f0ef3610cbd
dir: /code.c/
#include <stdint.h>
#include <stdio.h>
#include "symbol.h"
void
emitsym(struct symbol *sym)
{
	char c;
	if (sym->s.isglobal)
		c = 'G';
	else if (sym->s.isstatic)
		c = 'T';
	else if (sym->s.isregister)
		c = 'R';
	else
		c = 'A';
	printf("\t%c%d", c, sym->id);
}
void
emitfun(struct symbol *sym)
{
	printf("X%s\n", sym->name);
}
void
emitframe(struct symbol *sym)
{
	puts("{");
}
void
emitret(struct symbol *sym)
{
	puts("}");
}