Some uses of FullFP16Pat and FP16Pat were missing
needed Requires field.
It seems that in practice this never caused a problem.
There is no full FP16 supporting target that does not
support the relevant instructions, so FullFP16Pat did
not introduce any bug.
ARM v8-R does not support the relevant instructions if
it does not support single-precision. In this case the
FP16Pat can match when it should not, but this does
not matter because ARMISelLowering.cpp has an Extend
that effectively enforces the requirements.
AArch64 does not come into play because 8-R is the only
target where there can be a problem.