[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Transforms / InstSimplify / ConstProp / vscale-getelementptr.ll
blob5d3d4a44c02c95f9dff2773d6b2dae1fb715b87c
1 ; RUN: opt -early-cse -earlycse-debug-hash -S < %s | FileCheck %s
3 target datalayout = "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128"
4 target triple = "aarch64"
6 ; CHECK-LABEL: define <4 x i32*> @fixed_length_version_first() {
7 ; CHECK-NEXT:  ret <4 x i32*> undef
8 define <4 x i32*> @fixed_length_version_first() {
9   %ptr = getelementptr i32, <4 x i32*> undef, <4 x i64> undef
10   ret <4 x i32*> %ptr
13 ; CHECK-LABEL: define <4 x <4 x i32>*> @fixed_length_version_second() {
14 ; CHECK-NEXT:  ret <4 x <4 x i32>*> undef
15 define <4 x <4 x i32>*> @fixed_length_version_second() {
16   %ptr = getelementptr <4 x i32>, <4 x i32>* undef, <4 x i64> undef
17   ret <4 x <4 x i32>*> %ptr
20 ; CHECK-LABEL: define <vscale x 4 x i32*> @vscale_version_first() {
21 ; CHECK-NEXT:  ret <vscale x 4 x i32*> undef
22 define <vscale x 4 x i32*> @vscale_version_first() {
23   %ptr = getelementptr i32, <vscale x 4 x i32*> undef, <vscale x 4 x i64> undef
24   ret <vscale x 4 x i32*> %ptr
27 ; CHECK-LABEL: define <vscale x 4 x <vscale x 4 x i32>*> @vscale_version_second() {
28 ; CHECK-NEXT:  ret <vscale x 4 x <vscale x 4 x i32>*> undef
29 define <vscale x 4 x <vscale x 4 x i32>*> @vscale_version_second() {
30   %ptr = getelementptr <vscale x 4 x i32>, <vscale x 4 x i32>* undef, <vscale x 4 x i64> undef
31   ret <vscale x 4 x <vscale x 4 x i32>*> %ptr