Searched refs:OutTy (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp581 QualType OutTy = OutputExpr->getType(); local
582 if (Context.hasSameType(InTy, OutTy))
598 if (OutTy->isIntegerType() || OutTy->isPointerType())
600 else if (OutTy->isRealFloatingType())
611 uint64_t OutSize = Context.getTypeSize(OutTy);
651 (OutTy->isBooleanType() ? CK_IntegralToBoolean : CK_IntegralCast);
652 InputExpr = ImpCastExprToType(InputExpr, OutTy, castKind).get();
659 << InTy << OutTy << OutputExpr->getSourceRange()

Completed in 108 milliseconds