2002-05-01 04:51:32 +08:00
|
|
|
#include "c.h"
|
2005-01-16 06:15:51 +08:00
|
|
|
extern Interface nullIR, symbolicIR;
|
2002-05-01 04:51:32 +08:00
|
|
|
extern Interface mipsebIR, mipselIR;
|
2005-01-16 06:15:51 +08:00
|
|
|
extern Interface sparcIR, solarisIR;
|
|
|
|
extern Interface x86IR, x86nasmIR;
|
2002-05-01 04:51:32 +08:00
|
|
|
Binding bindings[] = {
|
2005-01-16 06:15:51 +08:00
|
|
|
"symbolic", &symbolicIR,
|
|
|
|
"mips-irix", &mipsebIR,
|
|
|
|
"mips-ultrix", &mipselIR,
|
|
|
|
"sparc-sun", &sparcIR,
|
|
|
|
"sparc-solaris", &solarisIR,
|
|
|
|
"x86-dos", &x86IR,
|
|
|
|
"x86-nasm", &x86nasmIR,
|
|
|
|
"symbolic/irix", &symbolicIR, /* omit */
|
|
|
|
"mips/irix", &mipsebIR, /* omit */
|
|
|
|
"mips/ultrix", &mipselIR, /* omit */
|
|
|
|
"sparc/sun", &sparcIR, /* omit */
|
|
|
|
"sparc/solaris", &solarisIR, /* omit */
|
|
|
|
"x86/dos", &x86IR, /* omit */
|
|
|
|
"x86/nasm", &x86nasmIR, /* omit */
|
|
|
|
"null", &nullIR,
|
|
|
|
NULL, NULL
|
2002-05-01 04:51:32 +08:00
|
|
|
};
|