1 ; RUN: opt -S < %s -instcombine | FileCheck %s
3 declare void @llvm.sideeffect()
5 ; Store-to-load forwarding across a @llvm.sideeffect.
9 define float @s2l(float* %p) {
10 store float 0.0, float* %p
11 call void @llvm.sideeffect()
12 %t = load float, float* %p