Searched defs:shiftAmt (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/VMCore/
H A DConstantFold.cpp1076 uint32_t shiftAmt = C2V.getZExtValue(); local
1077 if (shiftAmt < C1V.getBitWidth())
1078 return ConstantInt::get(CI1->getContext(), C1V.shl(shiftAmt));
1083 uint32_t shiftAmt = C2V.getZExtValue(); local
1084 if (shiftAmt < C1V.getBitWidth())
1085 return ConstantInt::get(CI1->getContext(), C1V.lshr(shiftAmt));
1090 uint32_t shiftAmt = C2V.getZExtValue(); local
1091 if (shiftAmt < C1V.getBitWidth())
1092 return ConstantInt::get(CI1->getContext(), C1V.ashr(shiftAmt));

Completed in 48 milliseconds