Revision 001faf32 linux-user/main.c

b/linux-user/main.c
1080 1080
    return -1;
1081 1081
}
1082 1082

  
1083
#define EXCP_DUMP(env, fmt, args...)                                         \
1084
do {                                                                          \
1085
    fprintf(stderr, fmt , ##args);                                            \
1086
    cpu_dump_state(env, stderr, fprintf, 0);                                  \
1087
    qemu_log(fmt, ##args);                                                   \
1088
    log_cpu_state(env, 0);                                                      \
1083
#define EXCP_DUMP(env, fmt, ...)                                        \
1084
do {                                                                    \
1085
    fprintf(stderr, fmt , ## __VA_ARGS__);                              \
1086
    cpu_dump_state(env, stderr, fprintf, 0);                            \
1087
    qemu_log(fmt, ## __VA_ARGS__);                                      \
1088
    log_cpu_state(env, 0);                                              \
1089 1089
} while (0)
1090 1090

  
1091 1091
void cpu_loop(CPUPPCState *env)

Also available in: Unified diff