llvm-6502/test/Transforms/LevelRaise/2002-03-11-Calls.ll
2006-12-02 04:23:10 +00:00

16 lines
420 B
LLVM

; Fixed a problem where level raise would try to forward substitute a cast of a
; method pointer type into a call. In doing so, it would have to change the
; types of the arguments to the call, but broke doing so.
;
; RUN: llvm-upgrade < %s | llvm-as | opt -raise
implementation
void "test"(void (int*) *%Fn, long* %Arg)
begin
%Fn2 = cast void (int*) *%Fn to void(long*) *
call void %Fn2(long *%Arg)
ret void
end