Skip to content

Commit 9cb2329

Browse files
committed
fix a displacement offset calculation error for movddup
1 parent 891c63e commit 9cb2329

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/disp8.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ static inline unsigned int get_disp8_shift(const insn *ins)
7373

7474
/* MOVDDUP */
7575
case DUP:
76-
return vectlen + 3;
76+
return vectlen + 4;
7777

7878
default:
7979
return 0;

0 commit comments

Comments
 (0)