From: H. Peter Anvin Date: Wed, 22 May 2002 20:48:01 +0000 (+0000) Subject: Add 16-bit imul test for strictness X-Git-Tag: nasm-2.11.05~2358 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4b92544473d7d7a8da4b4d8dea76b9713f6bd8e;p=platform%2Fupstream%2Fnasm.git Add 16-bit imul test for strictness --- diff --git a/test/expimp.asm b/test/expimp.asm index 117b854..2db0338 100644 --- a/test/expimp.asm +++ b/test/expimp.asm @@ -28,6 +28,13 @@ add eax,strict dword 2 ; Explicit Strict add eax,strict dword 123456h ; Explicit Strict add eax,strict byte 123456h ; Explicit Strict Truncation + + imul dx,3 ; Implicit + imul dx,byte 3 ; Explicit + imul dx,word 3 ; Explicit + imul dx,strict byte 3 ; Explicit Strict + imul dx,strict word 3 ; Explicit Strict + ; ; Same thing with branches ;