aboutsummaryrefslogtreecommitdiff
path: root/src/host
diff options
context:
space:
mode:
authorMike Pall <mike>2012-08-27 20:27:01 +0200
committerMike Pall <mike>2012-08-27 20:27:01 +0200
commit76b18b2b465532e528af2162e79365794c8ba290 (patch)
tree3e187353b1f3392961403db64b6fb51c36d240cf /src/host
parent30f458fb4d8bab4096d74ed62d621110ca16e881 (diff)
downloadluajit-76b18b2b465532e528af2162e79365794c8ba290.tar.gz
luajit-76b18b2b465532e528af2162e79365794c8ba290.tar.bz2
luajit-76b18b2b465532e528af2162e79365794c8ba290.zip
Add table of IR type sizes.
Diffstat (limited to 'src/host')
-rw-r--r--src/host/buildvm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/buildvm.c b/src/host/buildvm.c
index 462fd8f7..72b74f1f 100644
--- a/src/host/buildvm.c
+++ b/src/host/buildvm.c
@@ -245,7 +245,7 @@ IRDEF(IRNAME)
245}; 245};
246 246
247const char *const irt_names[] = { 247const char *const irt_names[] = {
248#define IRTNAME(name) #name, 248#define IRTNAME(name, size) #name,
249IRTDEF(IRTNAME) 249IRTDEF(IRTNAME)
250#undef IRTNAME 250#undef IRTNAME
251 NULL 251 NULL