diff options
author | David Malcolm <dmalcolm@redhat.com> | 2015-12-10 15:18:26 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2015-12-10 15:18:26 +0000 |
commit | 4d1b9fe0678f36163383c578eb16e6a34f9f1e1b (patch) | |
tree | fb6bf64daabbd6bab6f4dd697049c9463972cba2 /gcc/tree-ssa-loop-niter.c | |
parent | 5b1fb88a8a54a32c37adace8ece45656cffdc734 (diff) | |
download | gcc-4d1b9fe0678f36163383c578eb16e6a34f9f1e1b.zip gcc-4d1b9fe0678f36163383c578eb16e6a34f9f1e1b.tar.gz gcc-4d1b9fe0678f36163383c578eb16e6a34f9f1e1b.tar.bz2 |
Fix -Wmisleading-indentation warning in ifcvt.c
../../../src/gcc/ifcvt.c: In function ‘bool noce_try_inverse_constants(noce_if_info*)’:
../../../src/gcc/ifcvt.c:1233:2: error: statement is indented as if it were guarded by... [-Werror=misleading-indentation]
seq = end_ifcvt_sequence (if_info);
^~~
../../../src/gcc/ifcvt.c:1230:7: note: ...this ‘if’ clause, but it is not
if (target != if_info->x)
^~
due to the lack of an outdent after the conditional at lines 1230-1:
1220 if (target)
1221 {
1222 rtx_insn *seq = get_insns ();
1223
1224 if (!seq)
1225 {
1226 end_sequence ();
1227 return false;
1228 }
1229
>>1230 if (target != if_info->x)
>>1231 noce_emit_move_insn (if_info->x, target);
1232
>>1233 seq = end_ifcvt_sequence (if_info);
1234
1235 if (!seq)
1236 return false;
1237
1238 emit_insn_before_setloc (seq, if_info->jump,
1239 INSN_LOCATION (if_info->insn_a));
1240 return true;
1241 }
gcc/ChangeLog:
* ifcvt.c (noce_try_inverse_constants): Fix indentation.
From-SVN: r231521
Diffstat (limited to 'gcc/tree-ssa-loop-niter.c')
0 files changed, 0 insertions, 0 deletions