summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--prism/defines.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/prism/defines.h b/prism/defines.h
index 630eff7218..e78c7dd75c 100644
--- a/prism/defines.h
+++ b/prism/defines.h
@@ -231,12 +231,6 @@
/** The compiler should predicate that this branch will not be taken. */
#define PRISM_UNLIKELY(x) __builtin_expect(!!(x), 0)
-#elif defined(_MSC_VER) && (_MSC_VER >= 1400)
- /** The compiler should predicate that this branch will be taken. */
- #define PRISM_LIKELY(x) __assume(!!(x))
-
- /** The compiler should predicate that this branch will not be taken. */
- #define PRISM_UNLIKELY(x) __assume(!(x))
#else
/** Void because this platform does not support branch prediction hints. */
#define PRISM_LIKELY(x) (x)