diff options
author | Ben Elliston <bje@au.ibm.com> | 2006-03-06 00:49:58 +0000 |
---|---|---|
committer | Ben Elliston <bje@gcc.gnu.org> | 2006-03-06 11:49:58 +1100 |
commit | d9b9633d1908285d64530b115d0203255d917351 (patch) | |
tree | 381a8eb353377e9395b6aa5b853dd63d8e6b7d23 /gcc/config/dfp-bit.h | |
parent | 150eda70506c17cd42e0b905ecb93141847fb9f8 (diff) | |
download | gcc-d9b9633d1908285d64530b115d0203255d917351.tar.gz |
* config/dfp-bit.h (CMPtype): Typedef to a word mode integer.
From-SVN: r111750
Diffstat (limited to 'gcc/config/dfp-bit.h')
-rw-r--r-- | gcc/config/dfp-bit.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/config/dfp-bit.h b/gcc/config/dfp-bit.h index 5f3a04ee3b8..c81e50f4054 100644 --- a/gcc/config/dfp-bit.h +++ b/gcc/config/dfp-bit.h @@ -426,11 +426,9 @@ typedef unsigned int USItype __attribute__ ((mode (SI))); typedef unsigned int UDItype __attribute__ ((mode (DI))); /* The type of the result of a decimal float comparison. This must - match `word_mode' in GCC for the target. Default to SItype. */ + match `word_mode' in GCC for the target. */ -#ifndef CMPtype -#define CMPtype SItype -#endif +typedef int CMPtype __attribute__ ((mode (word))); /* Prototypes. */ |