aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/NVPTX/aggr-param.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/NVPTX/aggr-param.ll')
-rw-r--r--test/CodeGen/NVPTX/aggr-param.ll20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeGen/NVPTX/aggr-param.ll b/test/CodeGen/NVPTX/aggr-param.ll
deleted file mode 100644
index 21deb7ebce87..000000000000
--- a/test/CodeGen/NVPTX/aggr-param.ll
+++ /dev/null
@@ -1,20 +0,0 @@
-; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s
-
-; Make sure aggregate param types get emitted properly.
-
-%struct.float4 = type { float, float, float, float }
-
-; CHECK: .visible .func bar
-; CHECK: .param .align 4 .b8 bar_param_0[16]
-define void @bar(%struct.float4 %f) {
-entry:
- ret void
-}
-
-; CHECK: .visible .func foo
-; CHECK: .param .align 4 .b8 foo_param_0[20]
-define void @foo([5 x i32] %f) {
-entry:
- ret void
-}
-