[lib/ObjectYAML] - Change interface to return `bool` instead of `int`. NFCI
[llvm-complete.git] / test / TableGen / cond-default.td
blob816bf10676fe3188640e6b210c08ff8efb44a5f0
1 // Check that not specifying a valid condition results in error
3 // RUN: not llvm-tblgen %s 2>&1 | FileCheck %s
4 // XFAIL: vg_leak
6 class C<int x> {
7   string s  = !cond(!lt(x,0) : "negative", !gt(x,0) : "positive");
10 def Zero : C<0>;
11 //CHECK: error: Zero does not have any true condition in:!cond(0: "negative", 0: "positive")