]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Revert "bfin: correct macro use in gas testsuite"
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 14 Aug 2024 16:54:35 +0000 (09:54 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Thu, 15 Aug 2024 16:49:33 +0000 (09:49 -0700)
This reverts commit a1b7023447d19d70bc36d71b7627f457dbfae5ce.

commit 6ae8a30d44f016cafb46a75843b5109316eb1996
Author: Jan Beulich <jbeulich@suse.com>
Date:   Fri Aug 9 11:59:31 2024 +0200

    gas: have scrubber retain more whitespace

has been reverted to fix PR gas/32073.

gas/testsuite/gas/bfin/allinsn16.s

index bf00cb5e6033e0dd15c4efb77967af4b284d2966..4a1636d674e0d6751492942657233a2024c18e63 100644 (file)
 # iterate 0x20 times
 .macro _dw b, i, e
        .if \i < \e
-               __dw \b, \i, (\i + 0x40)
-               _dw \b, (\i + 0x40), \e
+               __dw \b, \i, \i + 0x40
+               _dw \b, \i + 0x40, \e
        .endif
 .endm
 
 # iterate 0x4 times
 .macro dw b, i, e
        .if \i < \e
-               _dw \b, \i, (\i + 0x800)
-               dw \b, (\i + 0x800), \e
+               _dw \b, \i, \i + 0x800
+               dw \b, \i + 0x800, \e
        .endif
 .endm