From: nasm-bot f. H. P. A. <hp...@zy...> - 2016-03-04 01:06:16
|
Commit-ID: a9a1b5c318e7bcb7680483c51933c6f3d6c69cd9 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=a9a1b5c318e7bcb7680483c51933c6f3d6c69cd9 Author: H. Peter Anvin <hp...@zy...> AuthorDate: Thu, 3 Mar 2016 17:05:20 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Thu, 3 Mar 2016 17:05:20 -0800 test: add test for cv8 structure bug (BR 3392342 and 3392343) Add test case for bugs 3392342 and 3392343. Signed-off-by: H. Peter Anvin <hp...@zy...> --- test/cv8struc.asm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/test/cv8struc.asm b/test/cv8struc.asm new file mode 100644 index 0000000..8d52cc3 --- /dev/null +++ b/test/cv8struc.asm @@ -0,0 +1,8 @@ +struc A_STRUC + ._a: resw 1 +endstruc + +a_struc: + istruc A_STRUC + at A_STRUC._a dw 1 + iend |