aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/GCSE/2002-05-21-NoSharedDominator.ll
blob: 2c78695e41efa8f537b4793749003af99b3c0985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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: 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
}