When doing select-to-zext/sext transformations, we should not handle
TrueVal and FalseVal of i1 type otherwise it would result in zext/sext i1 to i1.
Note that the current trunk code does not break since the checking currently does exist
but is implicit. When we have TrueVal and FalseVal of i1 type, this case will be captured
in the previous code block:
https://github.com/llvm/llvm-project/blob/master/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp#L2629
Therefore no unit test is provided in this patch. For maintenance purposes however,
this patch makes the checking explicit instead of implicit.
Nit: put a period at the end of sentence.