Merge "bit_reader: remove aarch64 BITS TODO"

This commit is contained in:
James Zern 2015-12-08 07:39:11 +00:00 committed by Gerrit Code Review
commit bd91af200a

View File

@ -43,10 +43,12 @@ extern "C" {
#define BITS 56
#elif defined(__arm__) || defined(_M_ARM) // ARM
#define BITS 24
#elif defined(__aarch64__) // ARM 64bit
#define BITS 56
#elif defined(__mips__) // MIPS
#define BITS 24
#else // reasonable default
#define BITS 24 // TODO(skal): test aarch64 and find the proper BITS value.
#define BITS 24
#endif
//------------------------------------------------------------------------------