(SPARC_STACK_ALIGN): Use ~7 not 0xfffffff8 for portability.
From-SVN: r6939
This commit is contained in:
parent
117323d441
commit
ea236c904b
@ -236,7 +236,7 @@ extern int target_flags;
|
||||
|
||||
/* ALIGN FRAMES on double word boundaries */
|
||||
|
||||
#define SPARC_STACK_ALIGN(LOC) (((LOC)+7) & 0xfffffff8)
|
||||
#define SPARC_STACK_ALIGN(LOC) (((LOC)+7) & (~7))
|
||||
|
||||
/* Allocation boundary (in *bits*) for the code of a function. */
|
||||
#define FUNCTION_BOUNDARY 32
|
||||
|
Loading…
Reference in New Issue
Block a user