aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
+}