Mercurial > hg > CbC > CbC_llvm
view test/TableGen/list-element-bitref.td @ 3:9ad51c7bc036
1st commit. remove git dir and add all files.
author | Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 15 May 2013 06:43:32 +0900 |
parents | |
children |
line wrap: on
line source
// RUN: llvm-tblgen %s | FileCheck %s class C<list<bits<8>> L> { bits<2> V0 = L[0]{1-0}; bits<2> V1 = L[1]{3-2}; string V2 = !if(L[0]{0}, "Odd", "Even"); } def c0 : C<[0b0101, 0b1010]>; // CHECK: def c0 // CHECK-NEXT: bits<2> V0 = { 0, 1 }; // CHECK-NEXT: bits<2> V1 = { 1, 0 }; // CHECK-NEXT: string V2 = "Odd";