diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-12-09 00:44:14 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-12-09 00:44:14 +0000 |
commit | 0581d86f32b5413401cd41a9cc090b7b88e354b1 (patch) | |
tree | f4558860ecf72b59708620a7b5b3da7c59a0a798 /gcc/tree-ssa-loop-unswitch.c | |
parent | a132ffbd6cdded291c71d70eeaee6f0250b03f8f (diff) | |
download | gcc-0581d86f32b5413401cd41a9cc090b7b88e354b1.zip gcc-0581d86f32b5413401cd41a9cc090b7b88e354b1.tar.gz gcc-0581d86f32b5413401cd41a9cc090b7b88e354b1.tar.bz2 |
Fix misleading indentation in tree-ssa-loop-unswitch.c
gcc/ChangeLog:
* tree-ssa-loop-unswitch.c (tree_unswitch_outer_loop): Fix
indentation.
From-SVN: r231435
Diffstat (limited to 'gcc/tree-ssa-loop-unswitch.c')
-rw-r--r-- | gcc/tree-ssa-loop-unswitch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-unswitch.c b/gcc/tree-ssa-loop-unswitch.c index 65e06cc..c340bcb 100644 --- a/gcc/tree-ssa-loop-unswitch.c +++ b/gcc/tree-ssa-loop-unswitch.c @@ -444,7 +444,7 @@ tree_unswitch_outer_loop (struct loop *loop) if (dump_file && (dump_flags & TDF_DETAILS)) fprintf (dump_file, ";; Not unswitching, loop is not expected" " to iterate\n"); - return false; + return false; } guard = find_loop_guard (loop); |