mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
3dcb2a2d92
The code was missing the case for aggregate parameters and hence was emitting them as .b0 type. Also fixed a couple of comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@200325 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
431 B
LLVM
21 lines
431 B
LLVM
; 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
|
|
}
|
|
|