mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-10 02:36:06 +00:00
3da59db637
The long awaited CAST patch. This introduces 12 new instructions into LLVM to replace the cast instruction. Corresponding changes throughout LLVM are provided. This passes llvm-test, llvm/test, and SPEC CPUINT2000 with the exception of 175.vpr which fails only on a slight floating point output difference. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31931 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
769 B
LLVM
23 lines
769 B
LLVM
; This example should be raised to return a Hash directly without casting.
|
|
; LevelRaise should eliminate all cast instructions from this testcase.
|
|
;
|
|
; XFAIL: *
|
|
; RUN: llvm-as < %s | opt -raise | llvm-dis | notcast
|
|
|
|
%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
|
|
|