search for: registerwithalias

Displaying 1 result from an estimated 1 matches for "registerwithalias".

2015 Nov 24
2
Post definition register alias in tablegen.
...each other. I have not found a way to define this in tablegen yet. Would anyone know how? I've tried: def A : Register<"%a">; def B : Register<"%b">; let Aliases = [A] in { B; } let Aliases = [B] in { A; } I've also tried forward definitions. def A; def B : RegisterWithAlias<"%b", A>; def A: RegisterWithAlias<"%a", B>; So, is there a way to specify that they are aliases of each other? Or does setting A as an alias of B also make sure that B is an alias of A? Thanks, Micah -------------- next part -------------- An HTML attachment was...