[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / TableGen / cast-list-initializer.td
blob4c83773a5a79c3757f6ff61b3ac81e9a2bb39621
1 // RUN: llvm-tblgen %s | FileCheck %s
3 class Foo<bits<8> b> {
4 // CHECK: list<int> ListOfInts = [170];
5 // CHECK: list<int> AnotherList = [170, 7];
6   list<int> ListOfInts = [!cast<int>(b)];
7   list<int> AnotherList = [!cast<int>(b), !cast<int>({1, 1, 1})];
10 def : Foo<{1, 0, 1, 0, 1, 0, 1, 0}>;