diff options
Diffstat (limited to 'gas/config/tc-ppc.c')
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index de0f8da..5f8d120 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -7122,7 +7122,7 @@ ppc_handle_align (struct frag *fragP) with nops but odd counts indicate data in an executable section so padding with zeros is most appropriate. */ if (count == 0 - || nop_select == PPC_NOP_VLE ? (count & 1) != 0 : (count & 3) != 0) + || (nop_select == PPC_NOP_VLE ? (count & 1) != 0 : (count & 3) != 0)) { *dest = 0; return; |