Searched refs:origmode (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.2-release/contrib/gcc/
H A Dsimplify-rtx.c4703 as the origmode, we can omit both the extension and the subreg.
4704 If the outermode is not larger than the origmode, we can apply
4706 is larger than the origmode, but both are integer modes, we
4710 enum machine_mode origmode = GET_MODE (XEXP (op, 0));
4711 if (outermode == origmode)
4713 if (GET_MODE_BITSIZE (outermode) <= GET_MODE_BITSIZE (origmode))
4714 return simplify_gen_subreg (outermode, XEXP (op, 0), origmode,
4716 origmode));
4719 XEXP (op, 0), origmode);
4701 enum machine_mode origmode = GET_MODE (XEXP (op, 0)); local

Completed in 104 milliseconds