From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-05 06:57:32
|
Commit-ID: 0197c966da91cc2cecc0884ccaf332aa81b32deb Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=0197c966da91cc2cecc0884ccaf332aa81b32deb Author: Chang S. Bae <cha...@in...> AuthorDate: Wed, 1 Apr 2020 14:45:23 -0700 Committer: Chang S. Bae <cha...@in...> CommitDate: Tue, 21 Apr 2020 21:11:33 +0000 test: Add BR3392630 Add the test code into the existing xdefine testing. Suggested-by: C. Masloch <pu...@ul...> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392630 Signed-off-by: Chang S. Bae <cha...@in...> --- test/xdefine.asm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/xdefine.asm b/test/xdefine.asm index 3b475864..180c0305 100644 --- a/test/xdefine.asm +++ b/test/xdefine.asm @@ -8,4 +8,8 @@ %xdefine ctr n %define n 0x22 - db ctr, n ; Should be 0x21, 0x22 + db ctr, n ; Should be 0x21, 0x22 + +%define MNSUFFIX +%define MNCURRENT TEST%[MNSUFFIX] +%xdefine var MNCURRENT |