f526c600c043 had a concern raised because of an invalid typesize request
on a scalable vector, which this patch addresses.
Prevent shouldReduceLoadWidth from attempting to query the bit size, and
add a regression test in sve-extract-fixed-vector.ll.
I think the real problem is here where the code is not vector ware. For SVE at least, the index loads are based on the scalar element type and so my feeling is that the real intent here is best followed if getSizeInBits becomes getScalarSizeInBits.
So today this function likely incorrectly always returns false for fixed length vectors, which is not great but better than the crash triggered by scalable vectors.