aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/SPARC/2011-01-21-ByValArgs.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/SPARC/2011-01-21-ByValArgs.ll')
-rw-r--r--test/CodeGen/SPARC/2011-01-21-ByValArgs.ll18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/CodeGen/SPARC/2011-01-21-ByValArgs.ll b/test/CodeGen/SPARC/2011-01-21-ByValArgs.ll
deleted file mode 100644
index 408b13d70a38..000000000000
--- a/test/CodeGen/SPARC/2011-01-21-ByValArgs.ll
+++ /dev/null
@@ -1,18 +0,0 @@
-;RUN: llc -march=sparc < %s | FileCheck %s
-
-%struct.foo_t = type { i32, i32, i32 }
-
-@s = internal unnamed_addr global %struct.foo_t { i32 10, i32 20, i32 30 }
-
-define i32 @test() nounwind {
-entry:
-;CHECK-LABEL: test:
-;CHECK: st
-;CHECK: st
-;CHECK: st
-;CHECK: bar
- %0 = tail call i32 @bar(%struct.foo_t* byval @s) nounwind
- ret i32 %0
-}
-
-declare i32 @bar(%struct.foo_t* byval)