diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-01-27 14:05:27 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-01-27 14:05:27 +0000 |
commit | 2d7e684f21090fa15bae1f371885b0d003f8a4bd (patch) | |
tree | 226c3945ac5381a408d13d55b514ae95fdf8e7ea /gcc/config/a29k/a29k.h | |
parent | 437bb0edd96cf539fda1a55b3ecab527cb6c72af (diff) | |
download | ppe42-gcc-2d7e684f21090fa15bae1f371885b0d003f8a4bd.tar.gz ppe42-gcc-2d7e684f21090fa15bae1f371885b0d003f8a4bd.zip |
(STORE_FLAG_VALUE): Make negative.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@13554 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/a29k/a29k.h')
-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 4f5792891a0..7ea593b3d42 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 |