diff options
author | James Van Artsdalen <jrv@gnu.org> | 1992-10-12 21:36:50 +0000 |
---|---|---|
committer | James Van Artsdalen <jrv@gnu.org> | 1992-10-12 21:36:50 +0000 |
commit | e8a2790cc7b812793db68328af927e6015c8576d (patch) | |
tree | 02a0e00240c2d1b6f77f11870d3a8f2be888db7d /gcc/conditions.h | |
parent | 472fbdd1ca531088684ce533b08f65bea09b84ee (diff) | |
download | gcc-e8a2790cc7b812793db68328af927e6015c8576d.zip gcc-e8a2790cc7b812793db68328af927e6015c8576d.tar.gz gcc-e8a2790cc7b812793db68328af927e6015c8576d.tar.bz2 |
(CC_NOT_SIGNED): New macro.
From-SVN: r2412
Diffstat (limited to 'gcc/conditions.h')
-rw-r--r-- | gcc/conditions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/conditions.h b/gcc/conditions.h index 140fbd9..e731937 100644 --- a/gcc/conditions.h +++ b/gcc/conditions.h @@ -101,6 +101,10 @@ extern CC_STATUS cc_status; (though inverted) state. */ #define CC_INVERTED 0100 +/* Nonzero if we must convert signed condition operators to unsigned. + This is only used by machine description files. */ +#define CC_NOT_SIGNED 0200 + /* This is how to initialize the variable cc_status. final does this at appropriate moments. */ |