Backed out changeset d1cbc5eeb8c8 (bug 1284803)

This commit is contained in:
Iris Hsiao 2016-07-26 10:20:46 +08:00
parent ff58a67065
commit 551b7cb0bc

View File

@ -180,7 +180,7 @@ extern "C" {
// The following functions fail on gcc/clang 32 bit with fpic and framepointer.
// caveat: clangcl uses row_win.cc which works.
#if !((defined(_DEBUG) || defined(MOZ_PROFILING)) && defined(__i386__)) || \
#if defined(NDEBUG) || !(defined(_DEBUG) && defined(__i386__)) || \
!defined(__i386__) || defined(_MSC_VER)
// TODO(fbarchard): fix build error on x86 debug
// https://code.google.com/p/libyuv/issues/detail?id=524
@ -209,7 +209,7 @@ extern "C" {
#define HAS_COPYROW_AVX
#define HAS_H422TOARGBROW_AVX2
#define HAS_I400TOARGBROW_AVX2
#if !((defined(_DEBUG) || defined(MOZ_PROFILING)) && defined(__i386__))
#if !(defined(_DEBUG) && defined(__i386__))
// TODO(fbarchard): fix build error on android_full_debug=1
// https://code.google.com/p/libyuv/issues/detail?id=517
#define HAS_I422ALPHATOARGBROW_AVX2