diff options
author | Alan Modra <amodra@gmail.com> | 2021-02-12 16:34:28 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-02-12 18:55:36 +1030 |
commit | 8f054a7a5a973ffc590e90b8cec3d622a8da6c5c (patch) | |
tree | f6e231c1dee38259327116b5ac9a55c5198a1d86 /binutils | |
parent | 3c1d41015b700c1eca3bb23f52440fa1b1328d9f (diff) | |
download | gdb-8f054a7a5a973ffc590e90b8cec3d622a8da6c5c.zip gdb-8f054a7a5a973ffc590e90b8cec3d622a8da6c5c.tar.gz gdb-8f054a7a5a973ffc590e90b8cec3d622a8da6c5c.tar.bz2 |
binutils test pr25662: don't use single character labels
This fixes the test for z80, which predefine register symbols "a" and
"c" among others.
* testsuite/binutils-all/pr25662.s: Replace "a" with "aaa" and
"c" with "ccc" labels.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/testsuite/binutils-all/pr25662.s | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 85549b5..040ec98 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2021-02-12 Alan Modra <amodra@gmail.com> + + * testsuite/binutils-all/pr25662.s: Replace "a" with "aaa" and + "c" with "ccc" labels. + 2021-02-12 Tom de Vries <tdevries@suse.de> * dwarf.h (debug_info): Fix typo in comment. diff --git a/binutils/testsuite/binutils-all/pr25662.s b/binutils/testsuite/binutils-all/pr25662.s index 0b4db05..8b3594b 100644 --- a/binutils/testsuite/binutils-all/pr25662.s +++ b/binutils/testsuite/binutils-all/pr25662.s @@ -21,11 +21,11 @@ to run this testcase for other file formats. */ .section .bss -a: +aaa: .zero 0x2 .section .data -c: +ccc: .zero 0x201 .section .text |