Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 157987 | Differences between
and this patch

Collapse All | Expand All

(-)qemu/target-i386/helper.c (+8 lines)
Lines 1594-1599 void helper_idivl_EAX_T0(void) Link Here
1594
    EDX = (uint32_t)r;
1594
    EDX = (uint32_t)r;
1595
}
1595
}
1596
1596
1597
/* GCC 4 has a hard time with this helper */
1598
1599
#ifndef CONFIG_KVM
1597
void helper_cmpxchg8b(void)
1600
void helper_cmpxchg8b(void)
1598
{
1601
{
1599
    uint64_t d;
1602
    uint64_t d;
Lines 1611-1616 void helper_cmpxchg8b(void) Link Here
1611
    }
1614
    }
1612
    CC_SRC = eflags;
1615
    CC_SRC = eflags;
1613
}
1616
}
1617
#endif
1614
1618
1615
void helper_cpuid(void)
1619
void helper_cpuid(void)
1616
{
1620
{
Lines 2968-2973 void helper_verw(void) Link Here
2968
    CC_SRC = eflags | CC_Z;
2972
    CC_SRC = eflags | CC_Z;
2969
}
2973
}
2970
2974
2975
/* GCC 4 has a hard time with the FPU helpers */
2976
#ifndef CONFIG_KVM
2977
2971
/* FPU helpers */
2978
/* FPU helpers */
2972
2979
2973
void helper_fldt_ST0_A0(void)
2980
void helper_fldt_ST0_A0(void)
Lines 3485-3490 void helper_fxrstor(target_ulong ptr, in Link Here
3485
        }
3492
        }
3486
    }
3493
    }
3487
}
3494
}
3495
#endif
3488
3496
3489
#ifndef USE_X86LDOUBLE
3497
#ifndef USE_X86LDOUBLE
3490
3498

Return to bug 157987