mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 1463036 - Use HAVE_ARM_NEON instead of BUILD_ARM_NEON for nsUTF8UtilsNEON.cpp. r=chmanchester
There is a subtle difference between the two, and the conditions used in nsUTF8Utils.h correspond to HAVE_ARM_NEON, not BUILD_ARM_NEON.
This commit is contained in:
parent
09d5ef6ba1
commit
29211f60da
@ -57,7 +57,7 @@ if CONFIG['INTEL_ARCHITECTURE']:
|
||||
SOURCES += ['nsReadableUtilsSSE2.cpp']
|
||||
SOURCES['nsReadableUtilsSSE2.cpp'].flags += CONFIG['SSE2_FLAGS']
|
||||
|
||||
if CONFIG['BUILD_ARM_NEON'] or CONFIG['CPU_ARCH'] == 'aarch64':
|
||||
if CONFIG['HAVE_ARM_NEON'] or CONFIG['CPU_ARCH'] == 'aarch64':
|
||||
SOURCES += ['nsUTF8UtilsNEON.cpp']
|
||||
SOURCES['nsUTF8UtilsNEON.cpp'].flags += CONFIG['NEON_FLAGS']
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user