aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorChristian Bruel <chrbr@gcc.gnu.org>2008-02-19 09:34:16 +0100
committerChristian Bruel <chrbr@gcc.gnu.org>2008-02-19 09:34:16 +0100
commit80fa012e02ac0601af67460f794c49a9f6c7e679 (patch)
tree49bb519758e42a2c01b67998a7a15cc3286bb026 /gcc
parent32159434b627981d1b4c8ee1304f20422738fe94 (diff)
downloadgcc-80fa012e02ac0601af67460f794c49a9f6c7e679.zip
gcc-80fa012e02ac0601af67460f794c49a9f6c7e679.tar.gz
gcc-80fa012e02ac0601af67460f794c49a9f6c7e679.tar.bz2
coding convention
From-SVN: r132418
Diffstat (limited to 'gcc')
-rw-r--r--gcc/tree-ssa-loop-ivopts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c
index 25f6b51..7bcb981 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;
}