From eb831623114b6b74172629f9f6db7b7eb979d90b Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Tue, 29 Sep 2009 22:48:50 +0200 Subject: x86: fpuc is uint16_t not unsigned int Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- target-i386/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'target-i386/cpu.h') diff --git a/target-i386/cpu.h b/target-i386/cpu.h index a4acf86..3e0dbd4 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -594,7 +594,7 @@ typedef struct CPUX86State { /* FPU state */ unsigned int fpstt; /* top of stack index */ unsigned int fpus; - unsigned int fpuc; + uint16_t fpuc; uint8_t fptags[8]; /* 0 = valid, 1 = empty */ union { #ifdef USE_X86LDOUBLE -- cgit v1.1