mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
4572ce85b0
llvm-svn: 33296
14 lines
322 B
LLVM
14 lines
322 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 -gcse | llvm-dis
|
|
|
|
int "test"(int %X, int %Y) {
|
|
%Z = add int %X, %Y
|
|
ret int %Z
|
|
|
|
Unreachable:
|
|
%Q = add int %X, %Y
|
|
ret int %Q
|
|
}
|