summaryrefslogtreecommitdiff
path: root/test/Transforms/LevelRaise/2002-10-02-SignExtensionProblem.ll
blob: d3b24304b7d2c8a324ea52aa11ac22aa9bcf5e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: llvm-upgrade < %s | llvm-as | opt -raise | llvm-dis | grep -v uint | not grep 4294967295

%length_code = uninitialized global [256 x ubyte]

ubyte* %test(uint %length) {
	%d = add uint 4294967295, %length
	%e = cast uint %d to int
	%g = cast int %e to ulong
	%j = cast [256 x ubyte]* %length_code to ulong
	%l = add ulong %j, %g
	%m = cast ulong %l to ubyte*
	ret ubyte* %m
}