diff options
author | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2012-10-26 09:41:55 +0000 |
---|---|---|
committer | Andreas Krebbel <Andreas.Krebbel@de.ibm.com> | 2012-10-26 09:41:55 +0000 |
commit | aac129d77611fab3db3f354c67c0f2c9406fa828 (patch) | |
tree | c4317a43a47fea63861ce6eaac42c7b70be96166 /opcodes/s390-mkopc.c | |
parent | 747a4ac1f42fa0fc458b07ca0370c87f9cd7ad44 (diff) | |
download | gdb-aac129d77611fab3db3f354c67c0f2c9406fa828.zip gdb-aac129d77611fab3db3f354c67c0f2c9406fa828.tar.gz gdb-aac129d77611fab3db3f354c67c0f2c9406fa828.tar.bz2 |
2012-10-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* s390-mkopc.c: Accept empty lines in s390-opc.txt.
* s390-opc.c: Add M_20OPT field. New instruction formats RRF_RURR2 and RRF_RMRR.
* s390-opc.txt: Add new instructions. New instruction type for lptea.
2012-10-26 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* gas/testsuite/gas/s390/zarch-z10.d: Refreshed.
* gas/testsuite/gas/s390/zarch-z10.s: Refreshed.
* gas/testsuite/gas/s390/zarch-z196.d: Refreshed.
* gas/testsuite/gas/s390/zarch-z196.s: Refreshed.
* gas/testsuite/gas/s390/zarch-z9-109.d: Refreshed.
* gas/testsuite/gas/s390/zarch-z990.d: Refreshed.
* gas/testsuite/gas/s390/zarch-z990.s: Refreshed.
* gas/testsuite/gas/s390/zarch-zEC12.d: Refreshed.
* gas/testsuite/gas/s390/zarch-zEC12.s: Refreshed.
Diffstat (limited to 'opcodes/s390-mkopc.c')
-rw-r--r-- | opcodes/s390-mkopc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/s390-mkopc.c b/opcodes/s390-mkopc.c index a1f0a12..c2c98de 100644 --- a/opcodes/s390-mkopc.c +++ b/opcodes/s390-mkopc.c @@ -343,7 +343,7 @@ main (void) int mode_bits; char *str; - if (currentLine[0] == '#') + if (currentLine[0] == '#' || currentLine[0] == '\n') continue; memset (opcode, 0, 8); if (sscanf (currentLine, "%15s %15s %15s \"%79[^\"]\" %15s %15s", |