diff options
author | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-04-19 14:01:43 +0100 |
---|---|---|
committer | Victor Do Nascimento <victor.donascimento@arm.com> | 2024-04-22 10:32:45 +0100 |
commit | 911cb006bf029ada9f6364619257dffe9218e92a (patch) | |
tree | 4ef9f766992187cbb26c4fc4cff0da939b6986d8 /opcodes | |
parent | 1f984aabf17f558d04d3cf1c1b643fd44e8348e8 (diff) | |
download | gdb-911cb006bf029ada9f6364619257dffe9218e92a.zip gdb-911cb006bf029ada9f6364619257dffe9218e92a.tar.gz gdb-911cb006bf029ada9f6364619257dffe9218e92a.tar.bz2 |
aarch64: Fix coding style issue in `aarch64-dis.c'
Fix integer value being returned from boolean function, as introduced
in `aarch64: Remove asserts from operand qualifier decoders [PR31595]'.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/aarch64-dis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/aarch64-dis.c b/opcodes/aarch64-dis.c index b70e6da..e1c3f55 100644 --- a/opcodes/aarch64-dis.c +++ b/opcodes/aarch64-dis.c @@ -1038,7 +1038,7 @@ aarch64_ext_ft (const aarch64_operand *self ATTRIBUTE_UNUSED, return false; info->qualifier = get_sreg_qualifier_from_value (value); if (info->qualifier == AARCH64_OPND_QLF_ERR) - return 0; + return false; } return true; |