diff options
| author | Pavel Dovgalyuk | 2019-07-25 10:44:55 +0200 |
|---|---|---|
| committer | Paolo Bonzini | 2019-08-20 17:26:22 +0200 |
| commit | 9e9b10c6491153b60ccfd021328f1f88e1669550 (patch) | |
| tree | fc7d5e3cf568f14e22930b6d055a5a7ef3523c49 /target/hppa | |
| parent | icount: clean up cpu_can_io at the entry to the block (diff) | |
| download | qemu-9e9b10c6491153b60ccfd021328f1f88e1669550.tar.gz qemu-9e9b10c6491153b60ccfd021328f1f88e1669550.tar.xz qemu-9e9b10c6491153b60ccfd021328f1f88e1669550.zip | |
icount: remove unnecessary gen_io_end calls
Prior patch resets can_do_io flag at the TB entry. Therefore there is no
need in resetting this flag at the end of the block.
This patch removes redundant gen_io_end calls.
Signed-off-by: Pavel Dovgalyuk <Pavel.Dovgaluk@ispras.ru>
Message-Id: <156404429499.18669.13404064982854123855.stgit@pasha-Precision-3630-Tower>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Pavel Dovgalyuk <pavel.dovgaluk@gmail.com>
Diffstat (limited to 'target/hppa')
| -rw-r--r-- | target/hppa/translate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target/hppa/translate.c b/target/hppa/translate.c index 188fe688cb..8c6189512c 100644 --- a/target/hppa/translate.c +++ b/target/hppa/translate.c @@ -2161,7 +2161,6 @@ static bool trans_mfctl(DisasContext *ctx, arg_mfctl *a) if (tb_cflags(ctx->base.tb) & CF_USE_ICOUNT) { gen_io_start(); gen_helper_read_interval_timer(tmp); - gen_io_end(); ctx->base.is_jmp = DISAS_IAQ_N_STALE; } else { gen_helper_read_interval_timer(tmp); |
