shithub: scc

ref: 9f0411880dcba1a99d5b7d76c0dc77424a139783
dir: /code.c/

View raw version
#include "syntax.h"


struct symbol *op_ary(struct node *np)
{
}

struct symbol *op_call(struct node *np)
{
}

struct symbol *op_field(struct node *np)
{
}

struct symbol *op_ptr(struct node *np)
{
}

struct symbol *op_postinc(struct node *np)
{
}

struct symbol *op_postdec(struct node *np)
{
}

struct symbol *op_preinc(struct node *np)
{
}

struct symbol *op_predec(struct node *np)
{
}

struct symbol *op_addr(struct node *np)
{
}

struct symbol *op_indir(struct node *np)
{
}

struct symbol *op_minus(struct node *np)
{
}

struct symbol *op_plus(struct node *np)
{
}

struct symbol *op_cpl(struct node *np)
{
}

struct symbol *op_neg(struct node *np)
{
}

struct symbol *op_mul(struct node *np)
{
}

struct symbol *op_div(struct node *np)
{
}

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

struct symbol *op_sub(struct node *np)
{
}

struct symbol *op_shl(struct node *np)
{
}

struct symbol *op_shr(struct node *np)
{
}

struct symbol *op_lt(struct node *np)
{
}

struct symbol *op_gt(struct node *np)
{
}

struct symbol *op_ge(struct node *np)
{
}

struct symbol *op_le(struct node *np)
{
}

struct symbol *op_eq(struct node *np)
{
}

struct symbol *op_ne(struct node *np)
{
}

struct symbol *op_band(struct node *np)
{
}

struct symbol *op_bxor(struct node *np)
{
}

struct symbol *op_bor(struct node *np)
{
}

struct symbol *op_and(struct node *np)
{
}

struct symbol *op_or(struct node *np)
{
}

struct symbol *op_tern(struct node *np)
{
}

struct symbol *op_assign(struct node *np)
{
}

struct symbol *op_a_mul(struct node *np)
{
}

struct symbol *op_a_div(struct node *np)
{
}

struct symbol *op_a_mod(struct node *np)
{
}

struct symbol *op_a_add(struct node *np)
{
}

struct symbol *op_a_sub(struct node *np)
{
}

struct symbol *op_a_shl(struct node *np)
{
}

struct symbol *op_a_shr(struct node *np)
{
}

struct symbol *op_a_and(struct node *np)
{
}

struct symbol *op_a_xor(struct node *np)
{
}

struct symbol *op_a_or(struct node *np)
{
}