Home
last modified time | relevance | path

Searched refs:Promotable (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
DSROA.cpp4050 bool Promotable = true; in rewritePartition() local
4052 Promotable &= Rewriter.visit(S); in rewritePartition()
4056 Promotable &= Rewriter.visit(&S); in rewritePartition()
4070 Promotable = false; in rewritePartition()
4079 Promotable = false; in rewritePartition()
4085 if (Promotable) { in rewritePartition()
/external/clang/lib/AST/
DASTContext.cpp4555 QualType ASTContext::getPromotedIntegerType(QualType Promotable) const { in getPromotedIntegerType()
4556 assert(!Promotable.isNull()); in getPromotedIntegerType()
4557 assert(Promotable->isPromotableIntegerType()); in getPromotedIntegerType()
4558 if (const EnumType *ET = Promotable->getAs<EnumType>()) in getPromotedIntegerType()
4561 if (const BuiltinType *BT = Promotable->getAs<BuiltinType>()) { in getPromotedIntegerType()
4588 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
4590 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
4592 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()