--- uae/src/md-i386-gcc/rpt.h 2018/04/24 16:42:54 1.1 +++ uae/src/md-i386-gcc/rpt.h 2018/04/24 16:48:07 1.1.1.2 @@ -11,7 +11,8 @@ typedef unsigned long frame_time_t; static inline frame_time_t read_processor_time (void) { frame_time_t foo; + int dummy; /* Don't assume the assembler knows rdtsc */ - __asm__ __volatile__ (".byte 0x0f,0x31" : "=a" (foo) :); + __asm__ __volatile__ (".byte 0x0f,0x31" : "=a" (foo), "=d" (dummy) :); return foo; }