From a9a1b5c318e7bcb7680483c51933c6f3d6c69cd9 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Thu, 3 Mar 2016 17:05:20 -0800 Subject: [PATCH] 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 --- test/cv8struc.asm | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/cv8struc.asm diff --git a/test/cv8struc.asm b/test/cv8struc.asm new file mode 100644 index 00000000..8d52cc30 --- /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 -- 2.11.4.GIT