repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Change func to funct in RISCVInstrInfoXqci.td. NFC (#119669)
[llvm-project.git]
/
flang
/
test
/
Fir
/
recursive-type-tco.fir
blob
6fd222f26547afd660390b458173656bc7f554e2
1
// Test lowering FIR to LLVM IR for a recursive type
2
3
// RUN: tco %s | FileCheck %s
4
5
// CHECK-LABEL: %t = type { ptr }
6
!t = !fir.type<t {p : !fir.ptr<!fir.type<t>>}>
7
8
// CHECK-LABEL: @a({ %t } %{{.*}})
9
func.func @a(%a : tuple<!t>) {
10
return
11
}