ack/util/mcgg/ircodes.h
David Given b1a3d76d6f Re-re-add the type inference layer, now I know more about how things work.
Remove that terrible float promotion code.
2016-10-22 23:04:13 +02:00

26 lines
288 B
C

#ifndef IRCODES_H
#define IRCODES_H
enum
{
IRF_SIZED = 1,
};
struct ir_data
{
const char* name;
int flags;
char returntype;
char lefttype;
char righttype;
};
extern const struct ir_data ir_data[];
#include "ircodes-dyn.h"
#endif
/* vim: set sw=4 ts=4 expandtab : */