repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[lib/ObjectYAML] - Change interface to return `bool` instead of `int`. NFCI
[llvm-complete.git]
/
test
/
TableGen
/
cond-empty-list-arg.td
blob
5f4ccade1697a263de5d2a2b381719fcddedadb9
1
// RUN: llvm-tblgen %s
2
// XFAIL: vg_leak
3
4
class C<bit cond> {
5
bit true = 1;
6
list<int> X = !cond(cond: [1, 2, 3], true : []);
7
list<int> Y = !cond(cond: [], true : [4, 5, 6]);
8
}