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

/external/llvm/lib/IR/
H A DConstantFold.cpp1089 uint32_t shiftAmt = C2V.getZExtValue(); local
1090 if (shiftAmt < C1V.getBitWidth())
1091 return ConstantInt::get(CI1->getContext(), C1V.shl(shiftAmt));
1096 uint32_t shiftAmt = C2V.getZExtValue(); local
1097 if (shiftAmt < C1V.getBitWidth())
1098 return ConstantInt::get(CI1->getContext(), C1V.lshr(shiftAmt));
1103 uint32_t shiftAmt = C2V.getZExtValue(); local
1104 if (shiftAmt < C1V.getBitWidth())
1105 return ConstantInt::get(CI1->getContext(), C1V.ashr(shiftAmt));

Completed in 117 milliseconds