From 2f5c47f4b4dae03545168094e504b3657debecf9 Mon Sep 17 00:00:00 2001 From: "Arnold D. Robbins" Date: Sun, 28 Feb 2016 05:40:41 +0200 Subject: Fix copy-paste error in profiler's else handling. --- ChangeLog | 5 +++++ profile.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index e9c9bda1..25a83a6e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-02-28 Arnold D. Robbins + + * profile.c (pprint): Fix copy-paste error in else handling. + Thanks to Michal Jaegermann for the report. + 2016-02-23 Arnold D. Robbins * config.guess, config.rpath, config.sub: Update to latest diff --git a/profile.c b/profile.c index ddc8b9b1..64aeaa9c 100644 --- a/profile.c +++ b/profile.c @@ -933,7 +933,7 @@ cleanup: && pc->branch_end == pc->nexti->nexti->branch_else->lasti) { pprint(pc->nexti, pc->branch_end, IN_ELSE_IF); } else { - fprintf(prof_fp, "{\n", op2str(pc->opcode)); + fprintf(prof_fp, "{\n"); indent_in(); pprint(pc->nexti, pc->branch_end, NO_PPRINT_FLAGS); indent_out(); -- cgit v1.2.3