projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
416ae8d
)
New test case for prototype support
author
Chris Lattner
<sabre@nondot.org>
Sun, 15 Jul 2001 21:43:17 +0000
(21:43 +0000)
committer
Chris 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]
patch
|
blob
diff --git a/test/Feature/prototype.ll
b/test/Feature/prototype.ll
new file mode 100644
(file)
index 0000000..
cea4f32
--- /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
+