From be063927710c8ab05f2fe15abfda9811255b31e8 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 24 Oct 2013 14:05:26 +0000 Subject: [PATCH] Merged revision(s) 85995 from trunk: Remove #pragma intrinsic( _mm_pause ); not needed, not supported on Intel. Closes #6646, #7318. [SVN r86417] --- include/boost/smart_ptr/detail/yield_k.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/boost/smart_ptr/detail/yield_k.hpp b/include/boost/smart_ptr/detail/yield_k.hpp index 23eadd8..14af524 100644 --- a/include/boost/smart_ptr/detail/yield_k.hpp +++ b/include/boost/smart_ptr/detail/yield_k.hpp @@ -30,7 +30,6 @@ #if defined(_MSC_VER) && _MSC_VER >= 1310 && ( defined(_M_IX86) || defined(_M_X64) ) extern "C" void _mm_pause(); -#pragma intrinsic( _mm_pause ) #define BOOST_SMT_PAUSE _mm_pause();