--- portab.h 2002/06/12 20:38:40 1.18 +++ portab.h 2002/06/14 12:26:06 1.19 @@ -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);