summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-03-04 10:59:13 -0800
committerH. Peter Anvin <hpa@zytor.com>2016-03-04 10:59:13 -0800
commitd414e5f4cdbc9235771d27c942aea3c428221fca (patch)
tree53fc826aa4fffd7c62969df3f3f60d80b9fcc039
parentf3e5494a6a07b6c427f6fdbab40834191beae2f6 (diff)
downloadnasm-d414e5f4cdbc9235771d27c942aea3c428221fca.tar.gz
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 <hpa@zytor.com>
-rw-r--r--test/cv8struc.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cv8struc.asm b/test/cv8struc.asm
index 8d52cc30..83fce799 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