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:
@@ -73,7 +73,7 @@ static inline unsigned int get_disp8_shift(const insn *ins)
|
||||
|
||||
/* MOVDDUP */
|
||||
case DUP:
|
||||
return vectlen + 3;
|
||||
return vectlen + 4;
|
||||
|
||||
default:
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user