llvm-6502/test/Feature/prototype.ll

11 lines
129 B
LLVM
Raw Normal View History

implementation
declare int "bar"(int %in)
int "foo"(int %blah)
begin
%xx = call int(int) %bar(int %blah)
ret int %xx
end