summaryrefslogtreecommitdiffstats
path: root/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll
blob: d4bdc3f5a05dbcd440848e897cd070b774d7d246 (plain)
1
2
3
4
5
6
7
8
9
10
11
; This testcase shows a bug where an common subexpression exists, but there
; is no shared dominator block that the expression can be hoisted out to.
;
; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | not grep load

define i32 @test(i32* %P) {
        store i32 5, i32* %P
        %Z = load i32* %P               ; <i32> [#uses=1]
        ret i32 %Z
}