Revision cd5158ea target-mips/op_helper.c

b/target-mips/op_helper.c
1701 1701
    return t0;
1702 1702
}
1703 1703

  
1704
void debug_pre_eret (void)
1704
static void debug_pre_eret (void)
1705 1705
{
1706 1706
    fprintf(logfile, "ERET: PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1707 1707
            env->active_tc.PC, env->CP0_EPC);
......
1712 1712
    fputs("\n", logfile);
1713 1713
}
1714 1714

  
1715
void debug_post_eret (void)
1715
static void debug_post_eret (void)
1716 1716
{
1717 1717
    fprintf(logfile, "  =>  PC " TARGET_FMT_lx " EPC " TARGET_FMT_lx,
1718 1718
            env->active_tc.PC, env->CP0_EPC);
......
2776 2776
        CLEAR_FP_COND(cc, env->active_fpu);                    \
2777 2777
}
2778 2778

  
2779
int float64_is_unordered(int sig, float64 a, float64 b STATUS_PARAM)
2779
static int float64_is_unordered(int sig, float64 a, float64 b STATUS_PARAM)
2780 2780
{
2781 2781
    if (float64_is_signaling_nan(a) ||
2782 2782
        float64_is_signaling_nan(b) ||
......
2834 2834
        CLEAR_FP_COND(cc, env->active_fpu);                    \
2835 2835
}
2836 2836

  
2837
flag float32_is_unordered(int sig, float32 a, float32 b STATUS_PARAM)
2837
static flag float32_is_unordered(int sig, float32 a, float32 b STATUS_PARAM)
2838 2838
{
2839 2839
    if (float32_is_signaling_nan(a) ||
2840 2840
        float32_is_signaling_nan(b) ||

Also available in: Unified diff