From be3614b7745aaa38263c0f4154ec71084b962804 Mon Sep 17 00:00:00 2001 From: Mark Wielaard Date: Sun, 24 Jan 2016 13:39:10 +0000 Subject: [PATCH] Fix tinycc.c misleading indentation as pointed out by GCC6. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15772 --- perf/tinycc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/perf/tinycc.c b/perf/tinycc.c index 3b487c13f7..0652d1aeb4 100644 --- a/perf/tinycc.c +++ b/perf/tinycc.c @@ -13365,8 +13365,8 @@ static void expr_eq(void) rc = RC_FLOAT; else rc = RC_INT; - gv(rc); - save_regs(1); + gv(rc); + save_regs(1); } if (tok == ':' && gnu_ext) { gv_dup(); -- 2.47.2