mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
find -type f | xargs sed -i 's/[\t ]$//g' # on most files
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3173 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
bd494f4cbd
commit
5fafdf24ef
327 changed files with 4737 additions and 4738 deletions
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* MIPS emulation helpers for qemu.
|
||||
*
|
||||
*
|
||||
* Copyright (c) 2004-2005 Jocelyn Mayer
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
|
@ -244,7 +244,7 @@ void do_ddivu (void)
|
|||
#endif
|
||||
#endif /* TARGET_MIPS64 */
|
||||
|
||||
#if defined(CONFIG_USER_ONLY)
|
||||
#if defined(CONFIG_USER_ONLY)
|
||||
void do_mfc0_random (void)
|
||||
{
|
||||
cpu_abort(env, "mfc0 random\n");
|
||||
|
@ -321,25 +321,25 @@ void fpu_handle_exception(void)
|
|||
|
||||
enable = GET_FP_ENABLE(env->fpu->fcr31);
|
||||
|
||||
/* determine current flags */
|
||||
/* determine current flags */
|
||||
if (flags & float_flag_invalid) {
|
||||
cpuflags |= FP_INVALID;
|
||||
cause |= FP_INVALID & enable;
|
||||
}
|
||||
if (flags & float_flag_divbyzero) {
|
||||
cpuflags |= FP_DIV0;
|
||||
cpuflags |= FP_DIV0;
|
||||
cause |= FP_DIV0 & enable;
|
||||
}
|
||||
if (flags & float_flag_overflow) {
|
||||
cpuflags |= FP_OVERFLOW;
|
||||
cpuflags |= FP_OVERFLOW;
|
||||
cause |= FP_OVERFLOW & enable;
|
||||
}
|
||||
if (flags & float_flag_underflow) {
|
||||
cpuflags |= FP_UNDERFLOW;
|
||||
cpuflags |= FP_UNDERFLOW;
|
||||
cause |= FP_UNDERFLOW & enable;
|
||||
}
|
||||
if (flags & float_flag_inexact) {
|
||||
cpuflags |= FP_INEXACT;
|
||||
cpuflags |= FP_INEXACT;
|
||||
cause |= FP_INEXACT & enable;
|
||||
}
|
||||
SET_FP_FLAGS(env->fpu->fcr31, cpuflags);
|
||||
|
@ -539,7 +539,7 @@ void do_pmon (int function)
|
|||
}
|
||||
}
|
||||
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
#if !defined(CONFIG_USER_ONLY)
|
||||
|
||||
static void do_unaligned_access (target_ulong addr, int is_write, int is_user, void *retaddr);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue