From: Ben Elliston Date: Mon, 6 Mar 2006 00:49:58 +0000 (+0000) Subject: * config/dfp-bit.h (CMPtype): Typedef to a word mode integer. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9b9633d1908285d64530b115d0203255d917351;p=gcc.git * config/dfp-bit.h (CMPtype): Typedef to a word mode integer. From-SVN: r111750 --- 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 + + * config/dfp-bit.h (CMPtype): Typedef to a word mode integer. + 2006-03-05 Kazu Hirata * 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. */