]> Git Repo - qemu.git/commitdiff
target-i386: Fix accidental use of SoftFloat uint64 type
authorAndreas Färber <[email protected]>
Sun, 19 Dec 2010 16:22:41 +0000 (17:22 +0100)
committerBlue Swirl <[email protected]>
Mon, 20 Dec 2010 21:03:19 +0000 (21:03 +0000)
softfloat.h's uint64 type has least-width semantics.
Use uint64_t instead since that is used in helpers.

v4:
* Summary change.

v3:
* Split off.

Signed-off-by: Andreas Färber <[email protected]>
Acked-by: Huang Ying <[email protected]>
Acked-by: Juan Quintela <[email protected]>
Signed-off-by: Blue Swirl <[email protected]>
target-i386/cpu.h

index 06e40f3e4948c24aa251a184c241d410cb870b52..f0c07cde3bc2e3e5c4efeb790bee698626a65620 100644 (file)
@@ -737,10 +737,10 @@ typedef struct CPUX86State {
        user */
     struct DeviceState *apic_state;
 
-    uint64 mcg_cap;
-    uint64 mcg_status;
-    uint64 mcg_ctl;
-    uint64 mce_banks[MCE_BANKS_DEF*4];
+    uint64_t mcg_cap;
+    uint64_t mcg_status;
+    uint64_t mcg_ctl;
+    uint64_t mce_banks[MCE_BANKS_DEF*4];
 
     uint64_t tsc_aux;
 
This page took 0.029381 seconds and 4 git commands to generate.