Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: include/libyuv/row.h

Issue 1527903002: disable I411ToARGB assembly if _DEBUG for chromium, as well as DEBUG for other builds. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/libyuv/row.h
diff --git a/include/libyuv/row.h b/include/libyuv/row.h
index 31de3e089cbfb62d404d05392b83e1a459c08ab3..c6db06b5bdd98bd260d1c67cac89ca9c6e966589 100644
--- a/include/libyuv/row.h
+++ b/include/libyuv/row.h
@@ -107,7 +107,8 @@ extern "C" {
#define HAS_I400TOARGBROW_SSE2
// The following functions fail on gcc/clang 32 bit.
// caveat: clangcl uses row_win.cc which works.
-#if !defined(__i386__) || !defined(DEBUG) || defined(_MSC_VER)
+#if !(defined(DEBUG) || defined(_DEBUG)) || !defined(__i386__) || \
+ defined(_MSC_VER)
// TODO(fbarchard): fix build error on x86 debug
// https://code.google.com/p/libyuv/issues/detail?id=524
#define HAS_I411TOARGBROW_SSSE3
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698