summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/2006-01-24-IllegalUnionPromoteCrash.ll
blob: d9749319411e16274f16c8c5588633a892c3048b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-upgrade < %s | llvm-as | opt -scalarrepl -disable-output

target endian = big
target pointersize = 32

int %test(long %L) {
	%X = alloca int
	%Y = cast int* %X to ulong*
	store ulong 0, ulong* %Y
	%Z = load int *%X
	ret int %Z
}