summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-31 21:04:39 +0000
committerChris Lattner <sabre@nondot.org>2003-05-31 21:04:39 +0000
commitcfea29ff6da3746c8ea02175e31237c4b67ec398 (patch)
tree84cd96fd825c404d4ee2fc04b50e7b4810df818f /test
parent40c4959e9fe77b8379e23f850a191bbacdfe6c03 (diff)
downloadllvm-cfea29ff6da3746c8ea02175e31237c4b67ec398.tar.gz
llvm-cfea29ff6da3746c8ea02175e31237c4b67ec398.tar.bz2
llvm-cfea29ff6da3746c8ea02175e31237c4b67ec398.tar.xz
New testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6481 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/Transforms/FunctionResolve/2003-05-31-InternalDecl.ll15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/Transforms/FunctionResolve/2003-05-31-InternalDecl.ll b/test/Transforms/FunctionResolve/2003-05-31-InternalDecl.ll
new file mode 100644
index 0000000000..ab41e2ec82
--- /dev/null
+++ b/test/Transforms/FunctionResolve/2003-05-31-InternalDecl.ll
@@ -0,0 +1,15 @@
+; RUN: if as < %s | opt -funcresolve | dis | grep declare
+; RUN: then exit 1
+; RUN: else exit 0
+; RUN: fi
+
+declare void %test(...)
+
+int %callee() {
+ call void(...)* %test(int 5)
+ ret int 2
+}
+
+internal void %test(int) {
+ ret void
+}