reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
28 typename std::enable_if<std::is_integral<T>::value && sizeof(T) * 8 <= 64, 29 llvm::Optional<T>>::type 30 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 30 checkedOp(T LHS, T RHS, F Op, bool Signed = true) { 31 llvm::APInt ALHS(/*BitSize=*/sizeof(T) * 8, LHS, Signed); 32 llvm::APInt ARHS(/*BitSize=*/sizeof(T) * 8, RHS, Signed);