2003-06-16 20:05:38 +08:00
|
|
|
; 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.
|
|
|
|
;
|
2008-03-01 17:15:35 +08:00
|
|
|
; RUN: llvm-as < %s | opt -load-vn -gcse | llvm-dis | not grep load
|
2003-06-16 20:05:38 +08:00
|
|
|
|
2008-03-01 17:15:35 +08:00
|
|
|
define i32 @test(i32* %P) {
|
|
|
|
store i32 5, i32* %P
|
|
|
|
%Z = load i32* %P ; <i32> [#uses=1]
|
|
|
|
ret i32 %Z
|
2003-06-16 20:05:38 +08:00
|
|
|
}
|
|
|
|
|