shithub: scc

ref: fd33aabb1f822618a90a1f05ad820f313fff0953
dir: /code.c/

View raw version
#include "syntax.h"


void op_ary(struct node *np)
{
}

void op_call(struct node *np)
{
}

void op_field(struct node *np)
{
}

void op_ptr(struct node *np)
{
}

void op_postinc(struct node *np)
{
}

void op_postdec(struct node *np)
{
}

void op_preinc(struct node *np)
{
}

void op_predec(struct node *np)
{
}

void op_addr(struct node *np)
{
}

void op_indir(struct node *np)
{
}

void op_minus(struct node *np)
{
}

void op_plus(struct node *np)
{
}

void op_cpl(struct node *np)
{
}

void op_neg(struct node *np)
{
}

void op_mul(struct node *np)
{
}

void op_div(struct node *np)
{
}

void op_mod(struct node *np)
{
}
void op_add(struct node *np)
{
}

void op_sub(struct node *np)
{
}

void op_shl(struct node *np)
{
}

void op_shr(struct node *np)
{
}

void op_lt(struct node *np)
{
}

void op_gt(struct node *np)
{
}

void op_ge(struct node *np)
{
}

void op_le(struct node *np)
{
}

void op_eq(struct node *np)
{
}

void op_ne(struct node *np)
{
}

void op_band(struct node *np)
{
}

void op_bxor(struct node *np)
{
}

void op_bor(struct node *np)
{
}

void op_and(struct node *np)
{
}

void op_or(struct node *np)
{
}

void op_tern(struct node *np)
{
}

void op_assign(struct node *np)
{
}

void op_a_mul(struct node *np)
{
}

void op_a_div(struct node *np)
{
}

void op_a_mod(struct node *np)
{
}

void op_a_add(struct node *np)
{
}

void op_a_sub(struct node *np)
{
}

void op_a_shl(struct node *np)
{
}

void op_a_shr(struct node *np)
{
}

void op_a_and(struct node *np)
{
}

void op_a_xor(struct node *np)
{
}

void op_a_or(struct node *np)
{
}