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:
92ae6c2
)
Testcase for call instruction
author
Chris Lattner
<sabre@nondot.org>
Tue, 3 Dec 2002 20:30:03 +0000
(20:30 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Tue, 3 Dec 2002 20:30:03 +0000
(20:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4890
91177308
-0d34-0410-b5e6-
96231b3b80d8
test/ExecutionEngine/test-call.ll
[new file with mode: 0644]
patch
|
blob
diff --git a/test/ExecutionEngine/test-call.ll
b/test/ExecutionEngine/test-call.ll
new file mode 100644
(file)
index 0000000..
6699bb6
--- /dev/null
+++ b/
test/ExecutionEngine/test-call.ll
@@ -0,0
+1,7
@@
+
+declare void %foo()
+
+void %test1() {
+ call void %foo()
+ ret void
+}