summaryrefslogtreecommitdiff
path: root/chromium/media/base/vector_math.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/media/base/vector_math.cc')
-rw-r--r--chromium/media/base/vector_math.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/media/base/vector_math.cc b/chromium/media/base/vector_math.cc
index ac6de92ad8d..de946ca8cbf 100644
--- a/chromium/media/base/vector_math.cc
+++ b/chromium/media/base/vector_math.cc
@@ -18,9 +18,8 @@ namespace vector_math {
// If we know the minimum architecture at compile time, avoid CPU detection.
// Force NaCl code to use C routines since (at present) nothing there uses these
-// methods and plumbing the -msse built library is non-trivial. iOS lies about
-// its architecture, so we also need to exclude it here.
-#if defined(ARCH_CPU_X86_FAMILY) && !defined(OS_NACL) && !defined(OS_IOS)
+// methods and plumbing the -msse built library is non-trivial.
+#if defined(ARCH_CPU_X86_FAMILY) && !defined(OS_NACL)
#if defined(__SSE__)
#define FMAC_FUNC FMAC_SSE
#define FMUL_FUNC FMUL_SSE