From: Christian Bruel Date: Tue, 19 Feb 2008 08:34:16 +0000 (+0100) Subject: coding convention X-Git-Tag: releases/gcc-4.4.0~6425 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=80fa012e02ac0601af67460f794c49a9f6c7e679;p=thirdparty%2Fgcc.git coding convention From-SVN: r132418 --- diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 25f6b51ab3cb..7bcb9810e7a0 100644 --- a/gcc/tree-ssa-loop-ivopts.c +++ b/gcc/tree-ssa-loop-ivopts.c @@ -1494,7 +1494,7 @@ may_be_unaligned_p (tree ref, tree step) || bitpos % BITS_PER_UNIT != 0) return true; - if (! constant_multiple_of (step, al, &mul)) + if (!constant_multiple_of (step, al, &mul)) return true; }