Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / aarch64-sve-intrinsics / README
blob082fbb4d9973c612188691e06fa00b992074b770
1 ++ SVE ACLE Warnings ++
3 When the ASM check lines fail in the SVE ACLE 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.