Fix https://github.com/llvm/llvm-project/issues/62247
D131057 added bArg and BArg in the AsLongLong label in
FormatSpecifier::hasValidLengthModifier, but missed the AsLong label,
therefore %llb is allowed while %lb (e.g. printf("%lb", (long)10)) has a
spurious warning. Add the missing case labels.