summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2014-05-02 08:11:54 -0700
committerJohann <johannkoenig@google.com>2014-05-02 08:11:54 -0700
commit07967b36b7752495bb828fec4b9f8a3bc07a015e (patch)
tree32683f1e497fc04d7517c296b18b00dc60e47a77
parentac8c069198c08c5ec0e5e7fb31b61e3a2dc883a3 (diff)
downloadlibvpx-07967b36b7752495bb828fec4b9f8a3bc07a015e.tar
libvpx-07967b36b7752495bb828fec4b9f8a3bc07a015e.tar.gz
libvpx-07967b36b7752495bb828fec4b9f8a3bc07a015e.tar.bz2
libvpx-07967b36b7752495bb828fec4b9f8a3bc07a015e.zip
vp9 register checks only apply to vp9
Disable register checks when vp9 is not configured. Soon vp8 assembly will move to intrinsics, obviating this check. This will still run the check when vp9 is enabled. Change-Id: I90f50d22cb8c15e9c07f2c8e830e08de7fce0689
-rw-r--r--test/register_state_check.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/register_state_check.h b/test/register_state_check.h
index 7e3d05351..5987fe31e 100644
--- a/test/register_state_check.h
+++ b/test/register_state_check.h
@@ -82,8 +82,8 @@ class RegisterStateCheck {
} // namespace libvpx_test
-#elif defined(CONFIG_SHARED) && defined(HAVE_NEON) \
- && !CONFIG_SHARED && HAVE_NEON
+#elif defined(CONFIG_SHARED) && defined(HAVE_NEON) && defined(CONFIG_VP9) \
+ && !CONFIG_SHARED && HAVE_NEON && CONFIG_VP9
#include "vpx/vpx_integer.h"