mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
4572ce85b0
llvm-svn: 33296
12 lines
320 B
LLVM
12 lines
320 B
LLVM
; 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
|
|
}
|
|
|