aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/multiple-return-values-cross-block.ll
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-06-17 06:57:15 +0000
committerChris Lattner <sabre@nondot.org>2011-06-17 06:57:15 +0000
commit424545e9509318e56be88021babec26cbfab8cc8 (patch)
tree79b9a7ff63a2562ccefb849ef188138c991bfa18 /test/CodeGen/X86/multiple-return-values-cross-block.ll
parent437544f25c1a6f6a00a2ed245c935088dbf9963d (diff)
remove asmparser support for the old getresult instruction, which has been subsumed by extractvalue.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@133247 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/multiple-return-values-cross-block.ll')
-rw-r--r--test/CodeGen/X86/multiple-return-values-cross-block.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/multiple-return-values-cross-block.ll b/test/CodeGen/X86/multiple-return-values-cross-block.ll
index e9837d0ebb..b0cb061113 100644
--- a/test/CodeGen/X86/multiple-return-values-cross-block.ll
+++ b/test/CodeGen/X86/multiple-return-values-cross-block.ll
@@ -4,12 +4,12 @@ declare {x86_fp80, x86_fp80} @test()
define void @call2(x86_fp80 *%P1, x86_fp80 *%P2) {
%a = call {x86_fp80,x86_fp80} @test()
- %b = getresult {x86_fp80,x86_fp80} %a, 1
+ %b = extractvalue {x86_fp80,x86_fp80} %a, 1
store x86_fp80 %b, x86_fp80* %P1
br label %L
L:
- %c = getresult {x86_fp80,x86_fp80} %a, 0
+ %c = extractvalue {x86_fp80,x86_fp80} %a, 0
store x86_fp80 %c, x86_fp80* %P2
ret void
}