llvm-6502/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
2003-09-16 15:29:54 +00:00

14 lines
307 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-as < %s | 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
}