Home
last modified time | relevance | path

Searched refs:CanOverflow (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DExpr.h1903 ExprObjectKind OK, SourceLocation l, bool CanOverflow) in UnaryOperator() argument
1912 UnaryOperatorBits.CanOverflow = CanOverflow; in UnaryOperator()
1939 bool canOverflow() const { return UnaryOperatorBits.CanOverflow; } in canOverflow()
1940 void setCanOverflow(bool C) { UnaryOperatorBits.CanOverflow = C; } in setCanOverflow()
H A DStmt.h405 unsigned CanOverflow : 1; in alignas() local
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaExpr.cpp12878 bool CanOverflow = false; in CreateBuiltinUnaryOp() local
12905 CanOverflow = isOverflowingIntegerType(Context, resultType); in CreateBuiltinUnaryOp()
12920 CanOverflow = Opc == UO_Minus && in CreateBuiltinUnaryOp()
13073 UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc, CanOverflow); in CreateBuiltinUnaryOp()