]> Git Repo - qemu.git/commitdiff
target-alpha: tb_flush helper should flush the tb (and not the tlb).
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Mar 2009 00:14:16 +0000 (00:14 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 29 Mar 2009 00:14:16 +0000 (00:14 +0000)
Looks to be a typo fix.

Signed-off-by: Tristan Gingold <[email protected]>
Signed-off-by: Aurelien Jarno <[email protected]>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6926 c046a42c-6fe2-441c-8c8c-71466251a162

target-alpha/op_helper.c

index 4015d4a725379fe7400c516c5d788307424947e7..7ad1b3d55c59f9e2bb1ef515f722b524f29e96ae 100644 (file)
@@ -25,7 +25,7 @@
 
 void helper_tb_flush (void)
 {
-    tlb_flush(env, 1);
+    tb_flush(env);
 }
 
 /*****************************************************************************/
This page took 0.027124 seconds and 4 git commands to generate.