Bug 921099 - Remove alignment assertions in AudioNodeEngineNEON.cpp for now. r=ehsan

This commit is contained in:
Paul Adenot 2013-09-30 15:04:54 -04:00
parent 80efea10be
commit 107ba81d51

View File

@ -6,7 +6,8 @@
#include "AudioNodeEngineNEON.h"
#include <arm_neon.h>
#ifdef DEBUG
//#ifdef DEBUG
#if 0 // see bug 921099
#define ASSERT_ALIGNED(ptr) \
MOZ_ASSERT((((uintptr_t)ptr + 15) & ~0x0F) == (uintptr_t)ptr, \
#ptr " has to be aligned 16-bytes aligned.");