From: nasm-bot f. C. S. B. <cha...@in...> - 2020-05-05 06:57:32
|
Commit-ID: 5f8d0ec1f6487fb7a2520b1c81292f2242acb01c Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=5f8d0ec1f6487fb7a2520b1c81292f2242acb01c Author: Chang S. Bae <cha...@in...> AuthorDate: Tue, 21 Apr 2020 21:35:54 +0000 Committer: Chang S. Bae <cha...@in...> CommitDate: Tue, 21 Apr 2020 21:35:54 +0000 test: Add BR3392660 Suggested-by: C. Masloch <pu...@ul...> Link: https://bugzilla.nasm.us/show_bug.cgi?id=3392660 Signed-off-by: Chang S. Bae <cha...@in...> --- test/br3392660.asm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/br3392660.asm b/test/br3392660.asm new file mode 100644 index 00000000..737fb616 --- /dev/null +++ b/test/br3392660.asm @@ -0,0 +1,9 @@ +%macro coreloop 1 + .count_%+1: + .no_run_before_%+1: + .broken_run_before_%-1: +%endmacro + +label: + coreloop z + coreloop nz |