Commit c7e8a937b7cb531a9b8ca4d1b91a3571bf44f276
1 parent
63742cf8
Fix typo in comment.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4852 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
target-mips/translate.c
@@ -8021,7 +8021,7 @@ void dump_fpu (CPUState *env) | @@ -8021,7 +8021,7 @@ void dump_fpu (CPUState *env) | ||
8021 | 8021 | ||
8022 | #if defined(TARGET_MIPS64) && defined(MIPS_DEBUG_SIGN_EXTENSIONS) | 8022 | #if defined(TARGET_MIPS64) && defined(MIPS_DEBUG_SIGN_EXTENSIONS) |
8023 | /* Debug help: The architecture requires 32bit code to maintain proper | 8023 | /* Debug help: The architecture requires 32bit code to maintain proper |
8024 | - sign-extened values on 64bit machines. */ | 8024 | + sign-extended values on 64bit machines. */ |
8025 | 8025 | ||
8026 | #define SIGN_EXT_P(val) ((((val) & ~0x7fffffff) == 0) || (((val) & ~0x7fffffff) == ~0x7fffffff)) | 8026 | #define SIGN_EXT_P(val) ((((val) & ~0x7fffffff) == 0) || (((val) & ~0x7fffffff) == ~0x7fffffff)) |
8027 | 8027 |