diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/tm_hard/tm_hard.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/modules/tm_hard/tm_hard.cpp b/modules/tm_hard/tm_hard.cpp index 0005f79c2..f5f9b3ed5 100644 --- a/modules/tm_hard/tm_hard.cpp +++ b/modules/tm_hard/tm_hard.cpp @@ -15,10 +15,6 @@ u64bit Hardware_Timer::clock() const { u64bit rtc = 0; -#if !defined(__GNUC__) - #error "This module uses GCC-style inline asm" -#endif - #if defined(BOTAN_TARGET_ARCH_IS_IA32) || defined(BOTAN_TARGET_ARCH_IS_AMD64) u32bit rtc_low = 0, rtc_high = 0; asm volatile("rdtsc" : "=d" (rtc_high), "=a" (rtc_low)); |