diff options
| author | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-06 00:49:58 +0000 |
|---|---|---|
| committer | bje <bje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-06 00:49:58 +0000 |
| commit | ccfed05057e25539bdb4b9b83dc20ea7ba69df6e (patch) | |
| tree | 381a8eb353377e9395b6aa5b853dd63d8e6b7d23 | |
| parent | f22f3d73475b67133842080db393f9c4aee3d6cd (diff) | |
| download | ppe42-gcc-ccfed05057e25539bdb4b9b83dc20ea7ba69df6e.tar.gz ppe42-gcc-ccfed05057e25539bdb4b9b83dc20ea7ba69df6e.zip | |
* config/dfp-bit.h (CMPtype): Typedef to a word mode integer.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111750 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/dfp-bit.h | 6 |
2 files changed, 6 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5499baa0289..7cffaeab914 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-03-06 Ben Elliston <bje@au.ibm.com> + + * config/dfp-bit.h (CMPtype): Typedef to a word mode integer. + 2006-03-05 Kazu Hirata <kazu@codesourcery.com> * tree-ssa-threadupdate.c (rediscover_loops_after_threading): 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. */ |

