aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll')
-rw-r--r--test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll b/test/CodeGen/CBackend/2008-05-21-MRV-InlineAsm.ll
deleted file mode 100644
index 8db3167..0000000
--- a/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
-}