1; RUN: opt -scalar-evolution -analyze < %s | FileCheck %s
2
3; CHECK: %1 = getelementptr <vscale x 4 x i32>, <vscale x 4 x i32>* null, i32 3
4; CHECK: -->  (3 * sizeof(<vscale x 4 x i32>)) U: [0,-15) S: [-9223372036854775808,9223372036854775793)
5; CHECK: %2 = getelementptr <vscale x 1 x i64>, <vscale x 1 x i64>* %p, i32 1
6; CHECK: -->  (sizeof(<vscale x 1 x i64>) + %p) U: full-set S: full-set
7define void @a(<vscale x 1 x i64> *%p) {
8  getelementptr <vscale x 4 x i32>, <vscale x 4 x i32> *null, i32 3
9  getelementptr <vscale x 1 x i64>, <vscale x 1 x i64> *%p, i32 1
10  ret void
11}
12