mirror of
https://github.com/corda/corda.git
synced 2025-06-19 07:38:22 +00:00
fix argument alignment for Darwin/ARM
This commit is contained in:
12
src/arm.cpp
12
src/arm.cpp
@ -1834,7 +1834,19 @@ class MyArchitecture: public Assembler::Architecture {
|
||||
}
|
||||
|
||||
virtual bool argumentAlignment() {
|
||||
#ifdef __APPLE__
|
||||
return false;
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
virtual bool argumentRegisterAlignment() {
|
||||
#ifdef __APPLE__
|
||||
return false;
|
||||
#else
|
||||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
virtual unsigned argumentRegisterCount() {
|
||||
|
Reference in New Issue
Block a user