Rajiv KI <rajivkumarsingla@xxxxxxx> writes: > Ian Lance Taylor-3 wrote: >> >> By definition CONST_INT rtxes have no mode. They take on whatever >> mode the context requires. This is indeed awkward in some cases, and >> sometimes requires maintaining the mode separately. >> >> Ian >> >> > > Ya its really not fine that it takes whatever mode. > > Please tell is there any way in gcc by which i can separately maintain mode > of 'CONST_INT' RTX. You have to provide a mode for any case where you might see a CONST_INT. The gcc middle-end and backends already does this, because they must. Ian