Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDecl.cpp14043 unsigned BestWidth; in ActOnEnumBody() local
14069 BestWidth = Context.getIntWidth(BestType); in ActOnEnumBody()
14077 BestWidth = CharWidth; in ActOnEnumBody()
14081 BestWidth = ShortWidth; in ActOnEnumBody()
14084 BestWidth = IntWidth; in ActOnEnumBody()
14086 BestWidth = Context.getTargetInfo().getLongWidth(); in ActOnEnumBody()
14088 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
14091 BestWidth = Context.getTargetInfo().getLongLongWidth(); in ActOnEnumBody()
14093 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
14098 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType); in ActOnEnumBody()
[all …]