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
This commit is contained in:
aurel32 2009-03-29 00:14:16 +00:00
parent 45d46ce8d9
commit 75fc9c0c9b
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
void helper_tb_flush (void)
{
tlb_flush(env, 1);
tb_flush(env);
}
/*****************************************************************************/