aboutsummaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorFrank Barchard <fbarchard@google.com>2017-10-03 11:43:19 -0700
committerCommit Bot <commit-bot@chromium.org>2017-10-03 19:11:05 +0000
commitfecd741794c50a18c5b04dd72b1217a670c747d4 (patch)
tree170e9b1812e83221c32215fc25bff63de7691ce5 /BUILD.gn
parentbde789b1763af8021c4d295d80e8fd2d27ffc019 (diff)
downloadlibyuv-fecd741794c50a18c5b04dd72b1217a670c747d4.tar.gz
Port HammingDistance to SSSE3
Bug: libyuv:701 Test: BenchmarkHammingDistance_Opt Change-Id: Ibdd5d382677ebef4f82a62e0d5c3b88614a3b6e4 Reviewed-on: https://chromium-review.googlesource.com/696290 Commit-Queue: Frank Barchard <fbarchard@google.com> Reviewed-by: Cheng Wang <wangcheng@google.com>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn6
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 52301d12..9badf08c 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -160,9 +160,9 @@ static_library("libyuv_internal") {
# To enable AVX2 or other cpu optimization, pass flag here
if (!is_win) {
cflags = [
- # "-mpopcnt",
- # "-mavx2",
- # "-mfma",
+ # "-mpopcnt",
+ # "-mavx2",
+ # "-mfma",
"-ffp-contract=fast", # Enable fma vectorization for NEON.
]
}