diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-10-09 12:24:11 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-10-09 12:25:16 +0200 |
commit | 5d3b558acd329de9dcbd63d9bb04242b31fad490 (patch) | |
tree | ac2dc3b11c98ad34f79079274f85c4cdd514d593 /gas | |
parent | 4f2358bca6910cafbe9b37a713fd96e5ab84d4e8 (diff) | |
download | gdb-5d3b558acd329de9dcbd63d9bb04242b31fad490.zip gdb-5d3b558acd329de9dcbd63d9bb04242b31fad490.tar.gz gdb-5d3b558acd329de9dcbd63d9bb04242b31fad490.tar.bz2 |
Replace nop in fill-1.s testcase.
gas/ChangeLog:
2017-10-09 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* testsuite/gas/all/fill-1.s: Replace nop with .word 42
Diffstat (limited to 'gas')
-rw-r--r-- | gas/testsuite/gas/all/fill-1.s | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/testsuite/gas/all/fill-1.s b/gas/testsuite/gas/all/fill-1.s index 92d495a..e72cbf1 100644 --- a/gas/testsuite/gas/all/fill-1.s +++ b/gas/testsuite/gas/all/fill-1.s @@ -1,5 +1,5 @@ .text .fill (2f-1f), 1, 0x90 1: - nop + .word 42 2: |