Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / AArch64 / README
blobb0a93e8668eeb3217f22ccfbe7f09f06214395a7
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.