target-alpha: tb_flush helper should flush the tb (and not the tlb).
[qemu] / target-alpha / op_helper.c
index 4015d4a..7ad1b3d 100644 (file)
@@ -25,7 +25,7 @@
 
 void helper_tb_flush (void)
 {
-    tlb_flush(env, 1);
+    tb_flush(env);
 }
 
 /*****************************************************************************/