Fix Sparc host compile problem reported by Shaddy Baddah

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3750 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
blueswir1 2007-12-01 08:18:52 +00:00
parent ad8efe4b6e
commit 2d8ee4e719
3 changed files with 31 additions and 0 deletions

View file

@ -1072,6 +1072,23 @@ void helper_mtpr (int iprn)
}
#endif
#if defined(HOST_SPARC) || defined(HOST_SPARC64)
void helper_reset_FT0 (void)
{
FT0 = 0;
}
void helper_reset_FT1 (void)
{
FT1 = 0;
}
void helper_reset_FT2 (void)
{
FT2 = 0;
}
#endif
/*****************************************************************************/
/* Softmmu support */
#if !defined (CONFIG_USER_ONLY)