--- trunk/xvidcore/src/portab.h 2002/06/14 08:26:04 205 +++ trunk/xvidcore/src/portab.h 2002/06/14 12:26:06 206 @@ -74,7 +74,10 @@ uint32_t ts1, ts2; __asm { - rdtsc mov ts1, eax mov ts2, edx} + rdtsc + mov ts1, eax + mov ts2, edx + } ts = ((uint64_t) ts2 << 32) | ((uint64_t) ts1);