summaryrefslogtreecommitdiff
path: root/test/Transforms/LevelRaise/2002-03-21-MissedRaise2.ll
blob: 8c3e664ba78ef79abbcff78fe103f5d752d723d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
; Problem that occured because of obsolete code that only allowed malloc
; instructions to change type if they were 'array' allocations.  This
; prevented reg115 from being able to change.
;

; RUN: if as < %s | opt -raise | dis | grep '= cast' | grep \*
; RUN: then exit 1
; RUN: else exit 0
; RUN: fi
	
	%Hash = type { { uint, sbyte *, \2 } * *, int (uint) *, int } *
	%HashEntry = type { uint, sbyte *, \2 } *
	%hash = type { { uint, sbyte *, \2 } * *, int (uint) *, int }
	%hash_entry = type { uint, sbyte *, \2 * }
implementation

%Hash "MakeHash"(int %size, int (uint) * %map)
begin
bb1:					;[#uses=0]
	%reg112 = malloc sbyte * *, uint 3		; <sbyte * * *> [#uses=4]
	%reg115 = malloc sbyte *, uint 1		; <sbyte * *> [#uses=1]
	store sbyte * * %reg115, sbyte * * * %reg112
	%reg121 = load sbyte * * * %reg112		; <sbyte * *> [#uses=1]
	%size-idxcast1 = cast int %size to uint		; <uint> [#uses=1]
	%reg1221 = getelementptr sbyte * * %reg121, uint %size-idxcast1		; <sbyte * *> [#uses=1]
	store sbyte * null, sbyte * * %reg1221
	%reg232 = getelementptr sbyte * * * %reg112, uint 1		; <sbyte * * *> [#uses=1]
	%cast243 = cast int (uint) * %map to sbyte * *		; <sbyte * *> [#uses=1]
	store sbyte * * %cast243, sbyte * * * %reg232
	%cast246 = cast sbyte * * * %reg112 to %Hash		; <%Hash> [#uses=1]
	ret %Hash %cast246
end