1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 12:12:47 +01:00

New test case for prototype support

llvm-svn: 199
This commit is contained in:
Chris Lattner 2001-07-15 21:43:17 +00:00
parent deddb40e91
commit 3e7e97bee3

10
test/Feature/prototype.ll Normal file
View File

@ -0,0 +1,10 @@
implementation
declare int "bar"(int %in)
int "foo"(int %blah)
begin
%xx = call int(int) %bar(int %blah)
ret int %xx
end