Revision 0bfcd599 target-ppc/translate.c

b/target-ppc/translate.c
8918 8918
                        if (handler->count == 0)
8919 8919
                            continue;
8920 8920
                        cpu_fprintf(f, "%02x %02x %02x (%02x %04d) %16s: "
8921
                                    "%016llx %lld\n",
8921
                                    "%016" PRIx64 " %" PRId64 "\n",
8922 8922
                                    op1, op2, op3, op1, (op3 << 5) | op2,
8923 8923
                                    handler->oname,
8924 8924
                                    handler->count, handler->count);
......
8927 8927
                    if (handler->count == 0)
8928 8928
                        continue;
8929 8929
                    cpu_fprintf(f, "%02x %02x    (%02x %04d) %16s: "
8930
                                "%016llx %lld\n",
8930
                                "%016" PRIx64 " %" PRId64 "\n",
8931 8931
                                op1, op2, op1, op2, handler->oname,
8932 8932
                                handler->count, handler->count);
8933 8933
                }
......
8935 8935
        } else {
8936 8936
            if (handler->count == 0)
8937 8937
                continue;
8938
            cpu_fprintf(f, "%02x       (%02x     ) %16s: %016llx %lld\n",
8938
            cpu_fprintf(f, "%02x       (%02x     ) %16s: %016" PRIx64
8939
                        " %" PRId64 "\n",
8939 8940
                        op1, op1, handler->oname,
8940 8941
                        handler->count, handler->count);
8941 8942
        }

Also available in: Unified diff