summaryrefslogtreecommitdiff
path: root/test/Transforms/ScalarRepl/2006-01-24-IllegalUnionPromoteCrash.ll
blob: 58f7c04e054dbb6f27812053f3affe2eb15c0a89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: llvm-as < %s | 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
}