Commit ea236c90 by Jim Wilson

(SPARC_STACK_ALIGN): Use ~7 not 0xfffffff8 for portability.

From-SVN: r6939
parent 117323d4
...@@ -236,7 +236,7 @@ extern int target_flags; ...@@ -236,7 +236,7 @@ extern int target_flags;
/* ALIGN FRAMES on double word boundaries */ /* 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. */ /* Allocation boundary (in *bits*) for the code of a function. */
#define FUNCTION_BOUNDARY 32 #define FUNCTION_BOUNDARY 32
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment