[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / DeadStoreElimination / X86 / gather-null-pointer.ll
blob8b257f86caf6c05df16a511de43c9e11185b9177
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2 ; RUN: opt < %s -passes=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, ptr %arg1) {
7 ; CHECK-LABEL: @bar(
8 ; CHECK-NEXT:  bb:
9 ; CHECK-NEXT:    store i32 5, ptr [[ARG1:%.*]]
10 ; CHECK-NEXT:    [[TMP:%.*]] = tail call <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32> zeroinitializer, ptr null, <4 x i32> [[ARG:%.*]], <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, i8 1)
11 ; CHECK-NEXT:    store i32 10, ptr [[ARG1]]
12 ; CHECK-NEXT:    ret <4 x i32> [[TMP]]
14 bb:
15   store i32 5, ptr %arg1
16   %tmp = tail call <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32> zeroinitializer, ptr null, <4 x i32> %arg, <4 x i32> <i32 -1, i32 -1, i32 -1, i32 -1>, i8 1)
17   store i32 10, ptr %arg1
18   ret <4 x i32> %tmp
21 declare <4 x i32> @llvm.x86.avx2.gather.d.d(<4 x i32>, ptr, <4 x i32>, <4 x i32>, i8)