diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1997-01-27 09:05:27 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1997-01-27 09:05:27 -0500 |
commit | bad87f0917a2ce480049ee5dbb3a7cedcc5bd066 (patch) | |
tree | 226c3945ac5381a408d13d55b514ae95fdf8e7ea /gcc | |
parent | 8e3df5dce2b3501e9f556fe8c7b956b0592022dd (diff) | |
download | gcc-bad87f0917a2ce480049ee5dbb3a7cedcc5bd066.zip gcc-bad87f0917a2ce480049ee5dbb3a7cedcc5bd066.tar.gz gcc-bad87f0917a2ce480049ee5dbb3a7cedcc5bd066.tar.bz2 |
(STORE_FLAG_VALUE): Make negative.
From-SVN: r13554
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/a29k/a29k.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/config/a29k/a29k.h b/gcc/config/a29k/a29k.h index 4f57928..7ea593b 100644 --- a/gcc/config/a29k/a29k.h +++ b/gcc/config/a29k/a29k.h @@ -1,5 +1,5 @@ /* Definitions of target machine for GNU compiler, for AMD Am29000 CPU. - Copyright (C) 1988, 90-95, 1996 Free Software Foundation, Inc. + Copyright (C) 1988, 90-96, 1997 Free Software Foundation, Inc. Contributed by Richard Kenner (kenner@nyu.edu) This file is part of GNU CC. @@ -1275,9 +1275,10 @@ extern char *a29k_function_name; #define TRULY_NOOP_TRUNCATION(OUTPREC, INPREC) 1 /* We assume that the store-condition-codes instructions store 0 for false - and some other value for true. This is the value stored for true. */ + and some other value for true. This is the value stored for true, which + is just the sign bit. */ -#define STORE_FLAG_VALUE 0x80000000 +#define STORE_FLAG_VALUE -2147483648 /* Specify the machine mode that pointers have. After generation of rtl, the compiler makes no further distinction |