New test case for prototype support
authorChris Lattner <sabre@nondot.org>
Sun, 15 Jul 2001 21:43:17 +0000 (21:43 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 15 Jul 2001 21:43:17 +0000 (21:43 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/prototype.ll [new file with mode: 0644]

diff --git a/test/Feature/prototype.ll b/test/Feature/prototype.ll
new file mode 100644 (file)
index 0000000..cea4f32
--- /dev/null
@@ -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
+