From: nasm-bot f. H. P. A. <hp...@zy...> - 2016-03-04 19:00:17
|
Commit-ID: d414e5f4cdbc9235771d27c942aea3c428221fca Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=d414e5f4cdbc9235771d27c942aea3c428221fca Author: H. Peter Anvin <hp...@zy...> AuthorDate: Fri, 4 Mar 2016 10:59:13 -0800 Committer: H. Peter Anvin <hp...@zy...> CommitDate: Fri, 4 Mar 2016 10:59:13 -0800 test/cv8struc.asm: fix missing comma in test case Fix a missing comma in the test case which make the test case bogus. Signed-off-by: H. Peter Anvin <hp...@zy...> --- test/cv8struc.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cv8struc.asm b/test/cv8struc.asm index 8d52cc3..83fce79 100644 --- a/test/cv8struc.asm +++ b/test/cv8struc.asm @@ -4,5 +4,5 @@ endstruc a_struc: istruc A_STRUC - at A_STRUC._a dw 1 + at A_STRUC._a, dw 1 iend |