2002-03-21 21:20:04 +00:00
|
|
|
; This example should be raised to return a Hash directly without casting. To
|
|
|
|
; successful, all cast instructions should be eliminated from this testcase.
|
|
|
|
;
|
2004-11-06 20:38:27 +00:00
|
|
|
; XFAIL: *
|
2003-09-16 15:29:54 +00:00
|
|
|
; RUN: llvm-as < %s | opt -raise | llvm-dis | not grep cast
|
2002-03-21 21:20:04 +00:00
|
|
|
|
|
|
|
%Hash = type { { uint, sbyte *, \2 } * *, int (uint) *, int } *
|
|
|
|
%hash = type { { uint, sbyte *, \2 } * *, int (uint) *, int }
|
|
|
|
%hash_el = type { uint, sbyte *, \2 } *
|
|
|
|
implementation
|
|
|
|
|
|
|
|
%Hash "MakeHash"(int %size, int (uint) * %map)
|
|
|
|
begin
|
|
|
|
%reg112 = malloc sbyte, uint 24 ; <sbyte *> [#uses=5]
|
|
|
|
%reg115 = malloc sbyte, uint 96 ; <sbyte *> [#uses=1]
|
|
|
|
%cast237 = cast sbyte * %reg112 to sbyte * * ; <sbyte * *> [#uses=1]
|
|
|
|
store sbyte * %reg115, sbyte * * %cast237
|
|
|
|
|
|
|
|
%cast246 = cast sbyte * %reg112 to %Hash ; <%Hash> [#uses=1]
|
|
|
|
ret %Hash %cast246
|
|
|
|
end
|
|
|
|
|