From 10d1b70f28f99210d3a751337c0d1bfdf3f79fe2 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Mon, 29 Jun 1992 10:34:10 -0700 Subject: [PATCH] (SPARC_STACK_ALIGN): Define. From-SVN: r1337 --- gcc/config/sparc/sparc.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index 004d19f8f46..e2ab152c6a6 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -170,6 +170,10 @@ extern int target_flags; /* Boundary (in *bits*) on which stack pointer should be aligned. */ #define STACK_BOUNDARY 64 +/* ALIGN FRAMES on double word boundaries */ + +#define SPARC_STACK_ALIGN(LOC) (((LOC)+7) & 0xfffffff8) + /* Allocation boundary (in *bits*) for the code of a function. */ #define FUNCTION_BOUNDARY 32 -- 2.30.2