mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-04 18:09:20 +00:00
New testcase
llvm-svn: 2695
This commit is contained in:
parent
e628d8b2b9
commit
54e1edcecb
@ -0,0 +1,13 @@
|
||||
; 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: as < %s | opt -gcse | dis
|
||||
|
||||
int "test"(int %X, int %Y) {
|
||||
%Z = add int %X, %Y
|
||||
ret int %Z
|
||||
|
||||
Unreachable:
|
||||
%Q = add int %X, %Y
|
||||
ret int %Q
|
||||
}
|
Loading…
Reference in New Issue
Block a user