Commit 75fc9c0c9b304e97e6fb1d375ed455cecf75324f
1 parent
45d46ce8
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
Showing
1 changed file
with
1 additions
and
1 deletions
target-alpha/op_helper.c
@@ -25,7 +25,7 @@ | @@ -25,7 +25,7 @@ | ||
25 | 25 | ||
26 | void helper_tb_flush (void) | 26 | void helper_tb_flush (void) |
27 | { | 27 | { |
28 | - tlb_flush(env, 1); | 28 | + tb_flush(env); |
29 | } | 29 | } |
30 | 30 | ||
31 | /*****************************************************************************/ | 31 | /*****************************************************************************/ |