From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-26 17:18:35
|
Commit-ID: 53ca4bb19cc4f3147891c03d10959d57e0edcc01 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=53ca4bb19cc4f3147891c03d10959d57e0edcc01 Author: Chang S. Bae <cha...@in...> AuthorDate: Wed, 1 Apr 2020 14:45:23 -0700 Committer: Chang S. Bae <cha...@in...> CommitDate: Wed, 1 Apr 2020 15:41:44 -0700 test: Add BR 3392630 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 |