// Copyright Epic Games, Inc. All Rights Reserved. #include "ticks.h" #include #pragma warning(push) #pragma warning(disable:4035) // no return value #ifdef __RADX64__ #define our_rdtsc() __rdtsc() #else static inline U64 our_rdtsc() { __asm rdtsc; // eax/edx returned } #endif U64 baue_ticks( void ) { return our_rdtsc(); }