mirror of
https://github.com/corda/corda.git
synced 2025-01-31 16:35:43 +00:00
conditionally compile ARM operations based on TARGET_BYTES_PER_WORD
This fixes the codegen-targets=all build regression.
This commit is contained in:
parent
d8b32f2c67
commit
8c277e2af8
@ -15,7 +15,7 @@
|
||||
#include "fixup.h"
|
||||
#include "multimethod.h"
|
||||
|
||||
#if AVIAN_TARGET_ARCH == AVIAN_ARCH_ARM
|
||||
#if TARGET_BYTES_PER_WORD == 4
|
||||
|
||||
namespace avian {
|
||||
namespace codegen {
|
||||
@ -1445,4 +1445,4 @@ void storeLoadBarrier(Context* con)
|
||||
} // namespace codegen
|
||||
} // namespace avian
|
||||
|
||||
#endif // AVIAN_TARGET_ARCH == AVIAN_ARCH_ARM
|
||||
#endif // TARGET_BYTES_PER_WORD == 4
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include "fixup.h"
|
||||
#include "multimethod.h"
|
||||
|
||||
#if AVIAN_TARGET_ARCH == AVIAN_ARCH_ARM64
|
||||
#if TARGET_BYTES_PER_WORD == 8
|
||||
|
||||
namespace {
|
||||
|
||||
@ -1606,4 +1606,4 @@ void storeLoadBarrier(Context* c)
|
||||
} // namespace codegen
|
||||
} // namespace avian
|
||||
|
||||
#endif // AVIAN_TARGET_ARCH == AVIAN_ARCH_ARM64
|
||||
#endif // TARGET_BYTES_PER_WORD == 8
|
||||
|
Loading…
x
Reference in New Issue
Block a user