Displaying 1 result from an estimated 1 matches for "value_0".
Did you mean:
value_r
2013 Jan 31
2
[LLVMdev] Tablegen problem populating TSFlags
...// Information about the instructions...
let InstructionSet = MyInstrInfo;
}
def r1 : Register<"r1"> { let Namespace = "Test"; }
def RC1 : RegisterClass<"Test", [i8], 8, (add r1)>;
class BitField<bits<2> x> {
bits<2> Val = x;
}
def VALUE_0 : BitField<0>;
def VALUE_1 : BitField<1>;
def VALUE_2 : BitField<2>;
def VALUE_3 : BitField<3>;
class MyInstruction<dag outs, dag ins, string asmstr, list<dag>
pattern> : Instruction
{
let Namespace = "Test";
let OutOperandList = outs;
let In...