brintos

brintos / llvm-project-archived public Read only

0
0
Text · 595 B · 082fbb4 Raw
12 lines · plain
1++ SVE ACLE Warnings ++2 3When the ASM check lines fail in the SVE ACLE tests it most likely means you4have introduced a warning due to:51. Adding an invalid call to VectorType::getNumElements() or EVT::getVectorNumElements()6   when the type is a scalable vector.72. Relying upon an implicit cast conversion from TypeSize to uint64_t.8 9For generic code, please modify your code to work with ElementCount and TypeSize directly.10For target-specific code that only deals with fixed-width vectors, use the fixed-size interfaces.11Please refer to the code where those functions live for more details.12