1 ++ SVE CodeGen Warnings ++
3 When the WARN check lines fail in the SVE codegen tests it most likely means you
4 have introduced a warning due to:
5 1. Adding an invalid call to VectorType::getNumElements() or EVT::getVectorNumElements()
6 when the type is a scalable vector.
7 2. Relying upon an implicit cast conversion from TypeSize to uint64_t.
9 For generic code, please modify your code to work with ElementCount and TypeSize directly.
10 For target-specific code that only deals with fixed-width vectors, use the fixed-size interfaces.
11 Please refer to the code where those functions live for more details.