aboutsummaryrefslogtreecommitdiffstats
path: root/lcc/src/bind.c
blob: c27036fb94b39399c9a7d64efea8649a194f525c (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 },
};