aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GCSE/2003-06-13-LoadStoreEliminate.ll
blob: 4ebb66c37839b9f425b4c00ef4db6420fa402e7b (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-upgrade < %s | llvm-as | opt -load-vn -gcse | llvm-dis | not grep load

int %test(int* %P) {
	store int 5, int* %P
	%Z = load int* %P
        ret int %Z
}