diff options
author | Mike Pall <mike> | 2009-12-15 04:22:42 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2009-12-15 04:22:42 +0100 |
commit | b2b8577a93f325dad667509b9a81931a12ff8924 (patch) | |
tree | 383d396a6f66294402e38b98672429768b89176e | |
parent | 547508f36f8f565770833c653e804ec425af605b (diff) | |
download | luajit-b2b8577a93f325dad667509b9a81931a12ff8924.tar.gz luajit-b2b8577a93f325dad667509b9a81931a12ff8924.tar.bz2 luajit-b2b8577a93f325dad667509b9a81931a12ff8924.zip |
Add usage message for mov64 to DynASM x64.
-rw-r--r-- | dynasm/dasm_x86.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/dynasm/dasm_x86.lua b/dynasm/dasm_x86.lua index d7789ced..1b79d3af 100644 --- a/dynasm/dasm_x86.lua +++ b/dynasm/dasm_x86.lua | |||
@@ -1648,6 +1648,7 @@ end | |||
1648 | -- x64-specific opcode for 64 bit immediates and displacements. | 1648 | -- x64-specific opcode for 64 bit immediates and displacements. |
1649 | if x64 then | 1649 | if x64 then |
1650 | function map_op.mov64_2(params) | 1650 | function map_op.mov64_2(params) |
1651 | if not params then return { "reg, imm", "reg, [disp]", "[disp], reg" } end | ||
1651 | local opcode, op64, sz, rex | 1652 | local opcode, op64, sz, rex |
1652 | local op64 = match(params[1], "^%[%s*(.-)%s*%]$") | 1653 | local op64 = match(params[1], "^%[%s*(.-)%s*%]$") |
1653 | if op64 then | 1654 | if op64 then |