RT3544: Remove MWERKS support
[openssl.git] / crypto / rand / rand_nw.c
index 17c1ea71db722b569c47ab2a63f49f19d22f99b0..9239a72dae2c26a5edca3713e188feaf31b9d59d 100644 (file)
@@ -154,13 +154,7 @@ int RAND_poll(void)
 
    for( i=2; i<ENTROPY_NEEDED; i++)
    {
-#ifdef __MWERKS__
-      asm 
-      {
-         rdtsc
-         mov tsc, eax        
-      }
-#elif defined(__GNUC__) && __GNUC__>=2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
+#if defined(__GNUC__) && __GNUC__>=2 && !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
       asm volatile("rdtsc":"=a"(tsc)::"edx");
 #endif