[ARM] Better OR's for MVE compares
[llvm-core.git] / test / Transforms / DeadStoreElimination / X86 / gather-null-pointer.ll
blob6a5f4bb9eb25c2495db4603ee688ac270c2a9e94
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -dse -S | FileCheck %s
4 ; Both stores should be emitted because we can't tell if the gather aliases.
6 define <4 x i32> @bar(<4 x i32> %arg, i32* %arg1) {
7 ; CHECK-LABEL: @bar(
8 ; CHECK-NEXT:  bb:
9 ; CHECK-NEXT:    store i32 5, i32* [[ARG1:%.*]]
10 ; CHECK-NEXT:    [[TMP:%.*]] = tail call <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32> zeroinitializer, i8* null, <4 x i32> [[ARG:%.*]], <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, i8 1)
11 ; CHECK-NEXT:    store i32 10, i32* [[ARG1]]
12 ; CHECK-NEXT:    ret <4 x i32> [[TMP]]
14 bb:
15   store i32 5, i32* %arg1
16   %tmp = tail call <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32> zeroinitializer, i8* null, <4 x i32> %arg, <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, i8 1)
17   store i32 10, i32* %arg1
18   ret <4 x i32> %tmp
21 declare <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32>, i8*, <4 x i32>, <4 x i32>, i8)