diff options
author | chrbr <chrbr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-19 08:34:16 +0000 |
---|---|---|
committer | chrbr <chrbr@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-02-19 08:34:16 +0000 |
commit | a379b1cbb386dacd9252facf3f719bc6f0b936ea (patch) | |
tree | 49bb519758e42a2c01b67998a7a15cc3286bb026 | |
parent | 90bd1b58d324856ce720b850bb9ca15ff7a4b392 (diff) | |
download | gcc-a379b1cbb386dacd9252facf3f719bc6f0b936ea.tar.gz |
coding convention
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@132418 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/tree-ssa-loop-ivopts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-ivopts.c b/gcc/tree-ssa-loop-ivopts.c index 25f6b51ab3c..7bcb9810e7a 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; } |