diff options
author | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-05-30 12:04:10 +0200 |
---|---|---|
committer | Andreas Krebbel <krebbel@linux.vnet.ibm.com> | 2017-05-30 12:05:49 +0200 |
commit | 70c16c04ac76a90f18e920aaea1026bde90c493c (patch) | |
tree | 09ebd68a96265f03660260d15904833c438042f8 /gas/config/tc-s390.c | |
parent | db6be0d5e31f11c10004f1f2ef2de05d213da1f4 (diff) | |
download | gdb-70c16c04ac76a90f18e920aaea1026bde90c493c.zip gdb-70c16c04ac76a90f18e920aaea1026bde90c493c.tar.gz gdb-70c16c04ac76a90f18e920aaea1026bde90c493c.tar.bz2 |
S/390: Fix indentation
gas/ChangeLog:
2017-05-30 Andreas Krebbel <krebbel@linux.vnet.ibm.com>
* config/tc-s390.c (md_gather_operands): Fix indentation.
Diffstat (limited to 'gas/config/tc-s390.c')
-rw-r--r-- | gas/config/tc-s390.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gas/config/tc-s390.c b/gas/config/tc-s390.c index 043336e..3ec5a27 100644 --- a/gas/config/tc-s390.c +++ b/gas/config/tc-s390.c @@ -1544,11 +1544,11 @@ md_gather_operands (char *str, && *str == '\0') continue; - if ((opcode->flags & S390_INSTR_FLAG_OPTPARM2) - && opindex_ptr[1] != '\0' - && opindex_ptr[2] != '\0' - && opindex_ptr[3] == '\0' - && *str == '\0') + if ((opcode->flags & S390_INSTR_FLAG_OPTPARM2) + && opindex_ptr[1] != '\0' + && opindex_ptr[2] != '\0' + && opindex_ptr[3] == '\0' + && *str == '\0') continue; /* If there is a next operand it must be separated by a comma. */ |