0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-10-10 00:25:06 -04:00

fix a displacement offset calculation error for movddup

This commit is contained in:
Yongjie Sheng
2025-10-07 14:35:45 +08:00
parent 891c63e64f
commit 9cb23294a4

View File

@@ -73,7 +73,7 @@ static inline unsigned int get_disp8_shift(const insn *ins)
/* MOVDDUP */ /* MOVDDUP */
case DUP: case DUP:
return vectlen + 3; return vectlen + 4;
default: default:
return 0; return 0;