diff options
Diffstat (limited to 'gdb/config/sparc/tm-sp64.h')
-rw-r--r-- | gdb/config/sparc/tm-sp64.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/config/sparc/tm-sp64.h b/gdb/config/sparc/tm-sp64.h index 3cef0fc..c35a458 100644 --- a/gdb/config/sparc/tm-sp64.h +++ b/gdb/config/sparc/tm-sp64.h @@ -24,10 +24,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "sparc/tm-sparc.h" -/* Stack has strict alignment. */ +/* Stack must be aligned on 128-bit boundaries when synthesizing + function calls. */ #undef STACK_ALIGN -#define STACK_ALIGN(ADDR) (((ADDR)+15)&-16) +#define STACK_ALIGN(ADDR) (((ADDR) + 15 ) & -16) /* Number of machine registers. */ |