aboutsummaryrefslogtreecommitdiffstats
path: root/code/tools/lcc/src/bind.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/tools/lcc/src/bind.c')
-rw-r--r--code/tools/lcc/src/bind.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/code/tools/lcc/src/bind.c b/code/tools/lcc/src/bind.c
index c27036f..bc7b983 100644
--- a/code/tools/lcc/src/bind.c
+++ b/code/tools/lcc/src/bind.c
@@ -1,22 +1,7 @@
#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 },