summaryrefslogtreecommitdiff
path: root/test/Transforms/FunctionResolve/retmismatch3.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Transforms/FunctionResolve/retmismatch3.ll')
-rw-r--r--test/Transforms/FunctionResolve/retmismatch3.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/Transforms/FunctionResolve/retmismatch3.ll b/test/Transforms/FunctionResolve/retmismatch3.ll
deleted file mode 100644
index f9850d67a7..0000000000
--- a/test/Transforms/FunctionResolve/retmismatch3.ll
+++ /dev/null
@@ -1,12 +0,0 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve
-
-declare int %read(...)
-
-long %read() {
- ret long 0
-}
-
-int %testfunc() {
- %X = call int(...)* %read()
- ret int %X
-}