diff options
| author | Mason Reed <mason@vector35.com> | 2024-07-09 12:24:01 -0400 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2024-07-09 12:38:38 -0400 |
| commit | 0515d0caeb829ef6c91c4c9ba54504413163de4a (patch) | |
| tree | 103e6365a09f849b685bca525f2968efdd6afe5e | |
| parent | 16b31d9bac4dc3c41799f644b18bea433e4e9460 (diff) | |
Fix warning in mips arch (skip-note, skip-ci)
| -rw-r--r-- | arch/mips/mips/mips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mips/mips.c b/arch/mips/mips/mips.c index a108c8f3..897a9a1e 100644 --- a/arch/mips/mips/mips.c +++ b/arch/mips/mips/mips.c @@ -2451,7 +2451,7 @@ uint32_t mips_decompose( return result; instruction->size = 4; //look for peudoinstructions by disassembling the next instruction too - if ((flags & DECOMPOSE_FLAGS_PSEUDO_OP != 0) && size >= 8) + if ((flags & DECOMPOSE_FLAGS_PSEUDO_OP) && size >= 8) { if (endianBig == 1) ins.value = bswap32(instructionValue[1]); |
