brotli/c/dec
Stephen Kyle cc7a74f15f decode: fix NEON inclusion (#714)
The macro that checks for NEON support should be __ARM_NEON, not
__ARM_NEON__. [1]

AArch64 compilers define __ARM_NEON but not __ARM_NEON__.
AArch32 compilers currently seem to define both, but could be within their
rights to drop __ARM_NEON__ in future versions.

This change moves the check into the common/platform.h file, checks for
both forms, and sets BROTLI_TARGET_NEON if NEON support is available.

[1] Section 6.5.4 of the ARM C Language Extensions.
    (At the time of writing, the latest version was Release 2.1.)
2018-10-08 15:40:11 +02:00
..
bit_reader.c Update (#630) 2017-12-12 14:33:12 +01:00
bit_reader.h Update 2018-06-11 15:17:26 +02:00
decode.c decode: fix NEON inclusion (#714) 2018-10-08 15:40:11 +02:00
huffman.c decode: faster huffman code loading on 32-bit Arm (#703) 2018-09-27 13:15:46 +02:00
huffman.h decode: faster huffman code loading on 32-bit Arm (#703) 2018-09-27 13:15:46 +02:00
prefix.h New feature: "Large Window Brotli" (#640) 2018-02-26 09:04:36 -05:00
state.c New feature: "Large Window Brotli" (#640) 2018-02-26 09:04:36 -05:00
state.h New feature: "Large Window Brotli" (#640) 2018-02-26 09:04:36 -05:00