aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-29 00:14:16 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2009-03-29 00:14:16 +0000
commit75fc9c0c9b304e97e6fb1d375ed455cecf75324f (patch)
tree6e164bdee316feaa242c4a76133b37b768d00adf /target-alpha
parenttarget-alpha: fix temp free for hw_st (diff)
downloadqemu-kvm-75fc9c0c9b304e97e6fb1d375ed455cecf75324f.tar.gz
qemu-kvm-75fc9c0c9b304e97e6fb1d375ed455cecf75324f.tar.bz2
qemu-kvm-75fc9c0c9b304e97e6fb1d375ed455cecf75324f.zip
target-alpha: tb_flush helper should flush the tb (and not the tlb).
Looks to be a typo fix. Signed-off-by: Tristan Gingold <gingold@adacore.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6926 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha')
-rw-r--r--target-alpha/op_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c
index 4015d4a72..7ad1b3d55 100644
--- a/target-alpha/op_helper.c
+++ b/target-alpha/op_helper.c
@@ -25,7 +25,7 @@
void helper_tb_flush (void)
{
- tlb_flush(env, 1);
+ tb_flush(env);
}
/*****************************************************************************/