Bug 1257055 - Use jit/arm64/Architecture-arm64.h on non-JIT aarch64. r=lth

MozReview-Commit-ID: EmzEDleNc7E
This commit is contained in:
Makoto Kato 2016-03-17 15:26:09 +09:00
parent c5a7e2811c
commit 13e6b287dc
2 changed files with 2 additions and 2 deletions

View File

@ -334,6 +334,8 @@ AtomicOperations::isLockfree(int32_t size)
// top of the file for more guidance.
# if defined(__ppc64__) || defined(__PPC64__) || defined(__ppc64le__) || defined(__PPC64LE__)
# include "jit/none/AtomicOperations-ppc.h"
# elif defined(__aarch64__)
# include "jit/arm64/AtomicOperations-arm64.h"
# else
# include "jit/none/AtomicOperations-none.h" // These MOZ_CRASH() always
# endif

View File

@ -12,8 +12,6 @@
#include "mozilla/Assertions.h"
#include "mozilla/Types.h"
#include "jit/arm64/Architecture-arm64.h"
inline bool
js::jit::AtomicOperations::isLockfree8()
{