* config/tc-mips.c (is_delay_slot_valid): Simplify expression.
[deliverable/binutils-gdb.git] / gas / config / tc-mips.c
index 4f7ead9db05ce8a5dee90de29d5a5fddcd738ff7..024b864fe8cd77ab366eb35e604310770a6acf64 100644 (file)
@@ -2321,8 +2321,7 @@ is_delay_slot_valid (const struct mips_opcode *mo)
     return TRUE;
 
   if (mo->pinfo == INSN_MACRO)
-    return ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0
-           ? TRUE : FALSE);
+    return (history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_16BIT) == 0;
   if ((history[0].insn_mo->pinfo2 & INSN2_BRANCH_DELAY_32BIT) != 0
       && micromips_insn_length (mo) != 4)
     return FALSE;
This page took 0.02945 seconds and 4 git commands to generate.