From 3e6e075c892f3cb569311f0afdab783545275f45 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 15 Feb 1997 08:10:59 -0500 Subject: [PATCH] (STORE_FLAG_VALUE): Write so works on both 32 and 64-bit host. From-SVN: r13635 --- gcc/config/a29k/a29k.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/config/a29k/a29k.h b/gcc/config/a29k/a29k.h index 7ea593b3d42..2b607e786e9 100644 --- a/gcc/config/a29k/a29k.h +++ b/gcc/config/a29k/a29k.h @@ -1278,7 +1278,7 @@ extern char *a29k_function_name; and some other value for true. This is the value stored for true, which is just the sign bit. */ -#define STORE_FLAG_VALUE -2147483648 +#define STORE_FLAG_VALUE (-2147483647 - 1) /* Specify the machine mode that pointers have. After generation of rtl, the compiler makes no further distinction -- 2.30.2