2006-12-02 04:23:10 +00:00
|
|
|
; RUN: llvm-upgrade < %s | llvm-as | llvm-dis > %t1.ll
|
2004-11-07 06:08:43 +00:00
|
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
|
2001-10-13 07:05:07 +00:00
|
|
|
%FunTy = type int(int)
|
|
|
|
|
2007-01-07 19:33:49 +00:00
|
|
|
declare int "test"(int) ; Test forward declaration merging
|
2001-10-13 07:05:07 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
implementation
|
|
|
|
|
2005-05-06 06:18:33 +00:00
|
|
|
void "invoke"(%FunTy *%x) {
|
2001-10-13 07:05:07 +00:00
|
|
|
%foo = call %FunTy* %x(int 123)
|
2005-05-06 06:18:33 +00:00
|
|
|
%foo2 = tail call %FunTy* %x(int 123)
|
2001-10-13 07:05:07 +00:00
|
|
|
ret void
|
2005-05-06 06:18:33 +00:00
|
|
|
}
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
int "main"(int %argc) ; TODO: , sbyte **argv, sbyte **envp)
|
|
|
|
begin
|
2001-10-03 14:50:12 +00:00
|
|
|
%retval = call int (int) *%test(int %argc)
|
2001-06-06 20:29:01 +00:00
|
|
|
%two = add int %retval, %retval
|
2001-10-13 07:05:07 +00:00
|
|
|
%retval2 = invoke int %test(int %argc)
|
|
|
|
to label %Next except label %Error
|
|
|
|
Next:
|
|
|
|
%two2 = add int %two, %retval2
|
|
|
|
call void %invoke (%FunTy* %test)
|
|
|
|
ret int %two2
|
|
|
|
Error:
|
|
|
|
ret int -1
|
2001-06-06 20:29:01 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
int "test"(int %i0)
|
|
|
|
begin
|
|
|
|
ret int %i0
|
|
|
|
end
|