aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/multiple-return-values.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-06-17 06:49:41 +0000
committerChris Lattner <sabre@nondot.org>2011-06-17 06:49:41 +0000
commit437544f25c1a6f6a00a2ed245c935088dbf9963d (patch)
tree128d4e702259e02f491291b55558c2409b1f319d /test/CodeGen/X86/multiple-return-values.ll
parent6b7c89ee096146aefebc245c7d8741b69786655a (diff)
downloadexternal_llvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.zip
external_llvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.tar.gz
external_llvm-437544f25c1a6f6a00a2ed245c935088dbf9963d.tar.bz2
remove parser support for the obsolete "multiple return values" syntax, which
was replaced with return of a "first class aggregate". git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133245 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/multiple-return-values.ll')
-rw-r--r--test/CodeGen/X86/multiple-return-values.ll16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/CodeGen/X86/multiple-return-values.ll b/test/CodeGen/X86/multiple-return-values.ll
deleted file mode 100644
index 018d997..0000000
--- a/test/CodeGen/X86/multiple-return-values.ll
+++ /dev/null
@@ -1,16 +0,0 @@
-; RUN: llc < %s -march=x86
-
-define {i64, float} @bar(i64 %a, float %b) {
- %y = add i64 %a, 7
- %z = fadd float %b, 7.0
- ret i64 %y, float %z
-}
-
-define i64 @foo() {
- %M = call {i64, float} @bar(i64 21, float 21.0)
- %N = getresult {i64, float} %M, 0
- %O = getresult {i64, float} %M, 1
- %P = fptosi float %O to i64
- %Q = add i64 %P, %N
- ret i64 %Q
-}