From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-05 06:57:27
|
Commit-ID: bb96fdc74ce894a86c3f0efaa522f5c76739a6eb Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=bb96fdc74ce894a86c3f0efaa522f5c76739a6eb Author: Chang S. Bae <cha...@in...> AuthorDate: Wed, 1 Apr 2020 15:06:38 -0700 Committer: Chang S. Bae <cha...@in...> CommitDate: Tue, 21 Apr 2020 21:00:56 +0000 test: Add BR3392626 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 |