aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <wilson@gcc.gnu.org>1994-03-31 19:01:00 -0800
committerJim Wilson <wilson@gcc.gnu.org>1994-03-31 19:01:00 -0800
commitea236c904b038fd54be0fefa0730b6a9ca75c673 (patch)
tree691040d7574d3095b97381fc7e56d1d95cd564be
parent117323d4415a8807fb4a9fb2860f4f15191f75e9 (diff)
downloadgcc-ea236c904b038fd54be0fefa0730b6a9ca75c673.zip
gcc-ea236c904b038fd54be0fefa0730b6a9ca75c673.tar.gz
gcc-ea236c904b038fd54be0fefa0730b6a9ca75c673.tar.bz2
(SPARC_STACK_ALIGN): Use ~7 not 0xfffffff8 for portability.
From-SVN: r6939
-rw-r--r--gcc/config/sparc/sparc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h
index 9fe8b82..e478d63 100644
--- a/gcc/config/sparc/sparc.h
+++ b/gcc/config/sparc/sparc.h
@@ -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