From: Chris Lattner Date: Sun, 15 Jul 2001 21:43:17 +0000 (+0000) Subject: New test case for prototype support X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=21341d3108bfd5e79cb508a617cc6f1ef0bc720c;p=oota-llvm.git New test case for prototype support git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Feature/prototype.ll b/test/Feature/prototype.ll new file mode 100644 index 00000000000..cea4f32b2b2 --- /dev/null +++ b/test/Feature/prototype.ll @@ -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 +