forked from OSchip/llvm-project
19 lines
527 B
LLVM
19 lines
527 B
LLVM
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
|
|
; RUN: opt -S -early-cse -earlycse-debug-hash < %s | FileCheck %s
|
|
|
|
declare void @readnone_may_unwind() readnone
|
|
|
|
define void @f(i32* %ptr) {
|
|
; CHECK-LABEL: @f(
|
|
; CHECK-NEXT: store i32 100, i32* [[PTR:%.*]], align 4
|
|
; CHECK-NEXT: call void @readnone_may_unwind()
|
|
; CHECK-NEXT: store i32 200, i32* [[PTR]], align 4
|
|
; CHECK-NEXT: ret void
|
|
;
|
|
|
|
store i32 100, i32* %ptr
|
|
call void @readnone_may_unwind()
|
|
store i32 200, i32* %ptr
|
|
ret void
|
|
}
|