summaryrefslogtreecommitdiff
path: root/src/jit/dis_mipsel.lua
diff options
context:
space:
mode:
authorMike Pall <mike>2013-05-16 20:34:34 +0200
committerMike Pall <mike>2013-05-16 20:34:34 +0200
commitfe8773677753040345afa2c2d708fe5ea8068c8e (patch)
treed4078f02a49227468543c800b450014ca46c0913 /src/jit/dis_mipsel.lua
parent647cc4613f3acd5ec8785920102af22b85cf2b9c (diff)
downloadluajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.gz
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.tar.bz2
luajit-fe8773677753040345afa2c2d708fe5ea8068c8e.zip
Get rid of module() in all internal modules.
Diffstat (limited to 'src/jit/dis_mipsel.lua')
-rw-r--r--src/jit/dis_mipsel.lua15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/jit/dis_mipsel.lua b/src/jit/dis_mipsel.lua
index 8a10c462..60e0233b 100644
--- a/src/jit/dis_mipsel.lua
+++ b/src/jit/dis_mipsel.lua
@@ -8,13 +8,10 @@
8-- MIPS disassembler module. All the interesting stuff is there. 8-- MIPS disassembler module. All the interesting stuff is there.
9------------------------------------------------------------------------------ 9------------------------------------------------------------------------------
10 10
11local require = require 11local dis_mips = require((string.match(..., ".*%.") or "").."dis_mips")
12 12return {
13module(...) 13 create = dis_mips.create_el,
14 14 disass = dis_mips.disass_el,
15local dis_mips = require(_PACKAGE.."dis_mips") 15 regname = dis_mips.regname
16 16}
17create = dis_mips.create_el
18disass = dis_mips.disass_el
19regname = dis_mips.regname
20 17