Displaying 1 result from an estimated 1 matches for "featureet".
Did you mean:
featureset
2020 Jun 27
3
tablegen generated enums in tablegen
...ld be the escape mechanism I need. Looking at the other
backends for examples, I see things like
[{ return Imm >= 0 && Imm < 64; }] // promising
code Requires = [{ {} }]; // this looks
like a string
let Requires = [{ {AArch64::FeatureETE} }]. // which is not promising
So I think that this would look something like:
int reg_index = -1;
...
let reg_index = [{ return XX::R8; }]; // or
let reg_index = [{ {XX::R8} }];
However, then I get errors of the form:
error: Value 'reg_index...