summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 8d82af5..4961879 100644
--- a/src/main.c
+++ b/src/main.c
@@ -19,6 +19,7 @@ int ref1(int i, int x, int y);
int ref2(int i, int x, int y);
int new(int i, int x, int y);
int new32(int i, int x, int y);
+int new32v2(int i, int x, int y);
void bigtab_init(void);
int bigtab(int i, int x, int y);
@@ -36,7 +37,8 @@ static struct solfunc solfuncs[ ] = {
{"ref2", ref2},
{"bigtab", bigtab},
{"new", new},
- {"new32", new32}
+ {"new32", new32},
+ {"new32v2", new32v2}
};
#define PASSES 5