ack/mach/proto/mcg/mcgg_generated_header.h

26 lines
470 B
C
Raw Normal View History

#include "mcg.h"
#include "mcgg.h"
2016-09-24 15:20:40 +00:00
#define PANIC printf
#define OP_LABEL(p) burm_calculate_label(p)
#define LEFT_CHILD(p) ((p)->left)
#define RIGHT_CHILD(p) ((p)->right)
#define burm_assert(b, s) assert(b)
extern int burm_calculate_label(struct ir* ir);
extern void burm_panic_cannot_match(struct ir* ir);
2016-09-24 15:20:40 +00:00
static bool burm_predicate_int(struct ir* ir)
{
return ir->goal_no == 3;
}
static bool burm_predicate_float(struct ir* ir)
{
return ir->goal_no == 5;
}