Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp18189 unsigned BestWidth; in ActOnEnumBody() local
18217 BestWidth = Context.getIntWidth(BestType); in ActOnEnumBody()
18225 BestWidth = CharWidth; in ActOnEnumBody()
18229 BestWidth = ShortWidth; in ActOnEnumBody()
18232 BestWidth = IntWidth; in ActOnEnumBody()
18234 BestWidth = Context.getTargetInfo().getLongWidth(); in ActOnEnumBody()
18236 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
18239 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
18241 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
18246 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); in ActOnEnumBody()
[all …]