[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / Transforms / DeadStoreElimination / int_sideeffect.ll
blob234eba052281eddc891f10a096d845471f5c1870
1 ; RUN: opt -S < %s -passes=dse | FileCheck %s
3 declare void @llvm.sideeffect()
5 ; Dead store elimination across a @llvm.sideeffect.
7 ; CHECK-LABEL: dse
8 ; CHECK: store
9 ; CHECK-NOT: store
10 define void @dse(ptr %p) {
11     store float 0.0, ptr %p
12     call void @llvm.sideeffect()
13     store float 0.0, ptr %p
14     ret void