INT_BITS           52 common/gcc-millicode/ashldi3.c 	if (shift >= INT_BITS) {
INT_BITS           53 common/gcc-millicode/ashldi3.c 		aa.ui[H] = aa.ui[L] << (shift - INT_BITS);
INT_BITS           57 common/gcc-millicode/ashldi3.c 		    (aa.ui[L] >> (INT_BITS - shift));
INT_BITS           51 common/gcc-millicode/ashrdi3.c 	if (shift >= INT_BITS) {
INT_BITS           62 common/gcc-millicode/ashrdi3.c 		s = (aa.si[H] >> (INT_BITS - 1)) >> 1;
INT_BITS           64 common/gcc-millicode/ashrdi3.c 		aa.ui[L] = aa.si[H] >> (shift - INT_BITS);
INT_BITS           68 common/gcc-millicode/ashrdi3.c 		    (aa.ui[H] << (INT_BITS - shift));
INT_BITS           52 common/gcc-millicode/lshldi3.c 	if (shift >= INT_BITS) {
INT_BITS           53 common/gcc-millicode/lshldi3.c 		aa.ui[H] = aa.ui[L] << (shift - INT_BITS);
INT_BITS           57 common/gcc-millicode/lshldi3.c 		    (aa.ui[L] >> (INT_BITS - shift));
INT_BITS           51 common/gcc-millicode/lshrdi3.c 	if (shift >= INT_BITS) {
INT_BITS           52 common/gcc-millicode/lshrdi3.c 		aa.ui[L] = aa.ui[H] >> (shift - INT_BITS);
INT_BITS           56 common/gcc-millicode/lshrdi3.c 		    (aa.ui[H] << (INT_BITS - shift));