[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Analysis / CostModel / AArch64 / cost-scalable-vector-gep.ll
blob8d285e5f495dfdb5429e63de9572d11a66885145
1 ; RUN: opt -cost-model -analyze -mtriple=aarch64--linux-gnu -mattr=+sve < %s | FileCheck %s
3 ; This regression test is verifying that a GEP instruction performed on a
4 ; scalable vector does not produce a 'assumption that TypeSize is not scalable'
5 ; warning when performing cost analysis.
7 ; CHECK: Cost Model: Found an estimated cost of 1 for instruction:   %retval = getelementptr
8 define <vscale x 16 x i8>* @gep_scalable_vector(<vscale x 16 x i8>* %ptr) {
9   %retval = getelementptr <vscale x 16 x i8>, <vscale x 16 x i8>* %ptr, i32 2
10   ret <vscale x 16 x i8>* %retval