Mercurial > hg > CbC > CbC_llvm
view llvm/test/TableGen/cond-empty-list-arg.td @ 207:2e18cbf3894f
LLVM12
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Jun 2021 06:07:14 +0900 |
parents | 1d019706d866 |
children |
line wrap: on
line source
// RUN: llvm-tblgen %s | FileCheck %s // XFAIL: vg_leak // Check that !cond works with an empty list value. class C<bit cond> { bit True = 1; list<int> X = !cond(cond: [1, 2, 3], True : []); list<int> Y = !cond(cond: [], True : [4, 5, 6]); } // CHECK: def rec1 // CHECK: X = []; // CHECK: Y = [4, 5, 6]; def rec1 : C<0>; // CHECK: def rec2 // CHECK: X = [1, 2, 3]; // CHECK: Y = []; def rec2 : C<1>;