diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-05-14 11:55:30 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-05-22 10:47:28 +0000 |
commit | dcfd14b3741983c466ad92fa2ae91eeafce3e5d5 (patch) | |
tree | e31a1c6d29bd6608b108ff72b68d90a80dad4a88 /target-sparc/helper.h | |
parent | 1fddfba129f5435c80eda14e8bc23fdb888c7187 (diff) | |
download | qemu-dcfd14b3741983c466ad92fa2ae91eeafce3e5d5.tar.gz qemu-dcfd14b3741983c466ad92fa2ae91eeafce3e5d5.tar.bz2 qemu-dcfd14b3741983c466ad92fa2ae91eeafce3e5d5.zip |
Delete unused tb_invalidate_page_range
tb_invalidate_page_range() was intended to be used to invalidate an
area of a TB which the guest explicitly flushes from i-cache. However,
QEMU detects writes to code areas where TBs have been generated, so
his has never been useful.
Delete the function, adjust callers.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-sparc/helper.h')
-rw-r--r-- | target-sparc/helper.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/target-sparc/helper.h b/target-sparc/helper.h index 12e8557133..023f4d6023 100644 --- a/target-sparc/helper.h +++ b/target-sparc/helper.h @@ -35,7 +35,6 @@ DEF_HELPER_2(check_align, void, tl, i32) DEF_HELPER_0(debug, void) DEF_HELPER_0(save, void) DEF_HELPER_0(restore, void) -DEF_HELPER_1(flush, void, tl) DEF_HELPER_2(udiv, tl, tl, tl) DEF_HELPER_2(udiv_cc, tl, tl, tl) DEF_HELPER_2(sdiv, tl, tl, tl) |