From 75fc9c0c9b304e97e6fb1d375ed455cecf75324f Mon Sep 17 00:00:00 2001 From: aurel32 Date: Sun, 29 Mar 2009 00:14:16 +0000 Subject: [PATCH] target-alpha: tb_flush helper should flush the tb (and not the tlb). Looks to be a typo fix. Signed-off-by: Tristan Gingold Signed-off-by: Aurelien Jarno git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6926 c046a42c-6fe2-441c-8c8c-71466251a162 --- target-alpha/op_helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index 4015d4a..7ad1b3d 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); } /*****************************************************************************/ -- 1.7.9.5