mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2695 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
87a09b10f8
commit
069667c8bb
13
test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
Normal file
13
test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
Normal file
@ -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