--- portab.h 2002/06/12 20:38:40 1.18 +++ portab.h 2002/06/14 13:06:33 1.20 @@ -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); @@ -211,6 +214,8 @@ #define CACHE_LINE 16 #define CACHE_ALIGN +#define DECLARE_ALIGNED_MATRIX(name,sizex,sizey,type,alignment) \ + type name[(sizex)*(sizey)] #endif