shithub: scc

ref: 813b9848feb7c50708fee6fd00f006a85ca4779e
dir: /stmt.c/

View raw version

#include <stddef.h>
#include <stdint.h>

#include "cc.h"

void
compound(void)
{
	extern void decl(void);

	expect('{');
	while (!accept('}')) {
		switch (yytoken) {
		case TYPE: case SCLASS: case TQUALIFIER:
			decl();
			break;
		default:
			expr();
			/* TODO: Evaluate the expression here */
		}
		expect(';');
	}
}