aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/src/bind.c
blob: 562ffda96f784c095c205dc5b800f976517e5f78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "c.h"
extern Interface alphaIR;
extern Interface mipsebIR, mipselIR;
extern Interface sparcIR, solarisIR;
extern Interface x86IR, x86linuxIR;
extern Interface symbolicIR, symbolic64IR;
extern Interface nullIR;
extern Interface bytecodeIR;
Binding bindings[] = {
	"alpha/osf",     &alphaIR,
	"mips/irix",     &mipsebIR,
	"mips/ultrix",   &mipselIR,
	"sparc/sun",     &sparcIR,
	"sparc/solaris", &solarisIR,
	"x86/win32",	 &x86IR,
	"x86/linux",	 &x86linuxIR,
	"symbolic/osf",  &symbolic64IR,
	"symbolic/irix", &symbolicIR,
	"symbolic",      &symbolicIR,
	"null",          &nullIR,
	"bytecode",      &bytecodeIR,
	NULL,            NULL
};