diff options
author | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:57:15 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-06-17 06:57:15 +0000 |
commit | 59345c8b658a2203bb9fc232ce3b92d2fc9c12ae (patch) | |
tree | 3a868c8b1eb5b86311bcecb096413ece8ebaafa4 /llvm/test/CodeGen/CBackend | |
parent | 640767fff6554824ed16975cf1fee73257161e85 (diff) | |
download | bcm5719-llvm-59345c8b658a2203bb9fc232ce3b92d2fc9c12ae.tar.gz bcm5719-llvm-59345c8b658a2203bb9fc232ce3b92d2fc9c12ae.zip |
remove asmparser support for the old getresult instruction, which has been subsumed by extractvalue.
llvm-svn: 133247
Diffstat (limited to 'llvm/test/CodeGen/CBackend')
-rw-r--r-- | llvm/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/llvm/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll b/llvm/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll deleted file mode 100644 index 8db3167e54d..00000000000 --- a/llvm/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll +++ /dev/null @@ -1,19 +0,0 @@ -; RUN: llc < %s -march=c - -declare {i32, i32} @foo() - -define i32 @test() { - %A = call {i32, i32} @foo() - %B = getresult {i32, i32} %A, 0 - %C = getresult {i32, i32} %A, 1 - %D = add i32 %B, %C - ret i32 %D -} - -define i32 @test2() { - %A = call {i32, i32} asm sideeffect "...", "={cx},={di},~{dirflag},~{fpsr},~{flags},~{memory}"() - %B = getresult {i32, i32} %A, 0 - %C = getresult {i32, i32} %A, 1 - %D = add i32 %B, %C - ret i32 %D -} |