[Patch]: Add CONST_FIXED_P predicate macro to rtl.h

2012-09-17 Thread Georg-Johann Lay
The subject says it all: Add CONST_FIXED_P predicate macro similar to CONST_INT_P to rtl.h. Currently, CONST_FIXED_P is not used in the compiler, except in avr.c that does #ifndef CONST_FIXED_P #define CONST_FIXED_P(X) (CONST_FIXED == GET_CODE (X)) #endif Ok for trunk? If this change is fine,

Re: [Patch]: Add CONST_FIXED_P predicate macro to rtl.h

2012-09-17 Thread Richard Guenther
On Mon, Sep 17, 2012 at 1:56 PM, Georg-Johann Lay a...@gjlay.de wrote: The subject says it all: Add CONST_FIXED_P predicate macro similar to CONST_INT_P to rtl.h. Currently, CONST_FIXED_P is not used in the compiler, except in avr.c that does #ifndef CONST_FIXED_P #define