ack/util/mcgg/ircodes.h
David Given a0131fdb47 You know what, the type inference stuff is a complete red herring. What this
actually needs is a more intelligent register allocator. So, remove the type
inference.
2016-09-29 19:58:02 +02:00

23 lines
228 B
C

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