|
From: <sv...@va...> - 2016-01-24 13:39:20
|
Author: mjw
Date: Sun Jan 24 13:39:10 2016
New Revision: 15772
Log:
Fix tinycc.c misleading indentation as pointed out by GCC6.
tinycc.c: In function ‘expr_eq’:
tinycc.c:13368:21: warning: statement is indented as if it were guarded by... [-Wmisleading-indentation]
gv(rc);
^~
tinycc.c:13366:17: note: ...this ‘else’ clause, but it is not
else
^~~~
Two statements are indeed misleadingly indented. Fixed by unindenting them.
Modified:
trunk/perf/tinycc.c
Modified: trunk/perf/tinycc.c
==============================================================================
--- trunk/perf/tinycc.c (original)
+++ trunk/perf/tinycc.c Sun Jan 24 13:39:10 2016
@@ -13365,8 +13365,8 @@
rc = RC_FLOAT;
else
rc = RC_INT;
- gv(rc);
- save_regs(1);
+ gv(rc);
+ save_regs(1);
}
if (tok == ':' && gnu_ext) {
gv_dup();
|