fix argument alignment for Darwin/ARM

This commit is contained in:
Joel Dice
2011-08-10 21:33:56 -06:00
parent 39cffb8933
commit 44f7bd9fe0
6 changed files with 43 additions and 16 deletions

View File

@ -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() {