1 ; RUN: opt -S -early-cse < %s | FileCheck %s
3 declare void @readnone_may_unwind() readnone
5 define void @f(i32* %ptr) {
7 ; CHECK: store i32 100, i32* %ptr
8 ; CHECK: call void @readnone_may_unwind()
9 ; CHECK: store i32 200, i32* %ptr
11 store i32 100, i32* %ptr
12 call void @readnone_may_unwind()
13 store i32 200, i32* %ptr