From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-26 17:18:28
|
Commit-ID: ddb22a821ce08ec79b013cdcd4538de24c93a93f Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=ddb22a821ce08ec79b013cdcd4538de24c93a93f Author: Chang S. Bae <cha...@in...> AuthorDate: Wed, 1 Apr 2020 15:06:38 -0700 Committer: Chang S. Bae <cha...@in...> CommitDate: Wed, 1 Apr 2020 15:40:59 -0700 test: Add BR 3392626 There are many similar preprocessor loop cases but located on each bug-report basis. While it looks to be better to consolidate them together, add one more test case like what was done before. Suggested-by: C. Masloch <pu...@ul...> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392626 Signed-off-by: Chang S. Bae <cha...@in...> --- test/br3392626.asm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/br3392626.asm b/test/br3392626.asm new file mode 100644 index 00000000..de4ad8ee --- /dev/null +++ b/test/br3392626.asm @@ -0,0 +1,6 @@ + ; line 1 +%rep 3 ; line 2 + ; line 3 + db 26h ; line 4 +%endrep ; line 5 + ; line 6 |