llvm-6502/test/Integer/prototype_bt.ll

15 lines
248 B
LLVM
Raw Normal View History

; RUN: llvm-as %s -o - | llvm-dis > %t1.ll
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
; RUN: diff %t1.ll %t2.ll
implementation
declare i31 "bar"(i31 %in)
define i31 "foo"(i31 %blah)
begin
%xx = call i31 %bar(i31 %blah)
ret i31 %xx
end