Displaying 1 result from an estimated 1 matches for "k_record".
Did you mean:
x_record
2012 Dec 19
0
[LLVMdev] question about printAliasInstr
...def : InstAlias<"b $offset", (BEQ ZERO, ZERO, brtarget:$offset)>;
The code which decides not to include this alias is located near line 856
in AsmWriterEmitter.cpp:
for (unsigned i = 0, e = LastOpNo; i != e; ++i) {
...
switch (RO.Kind) {
case CodeGenInstAlias::ResultOperand::K_Record: {
...
if (Rec->isSubClassOf("RegisterClass")) {
...
} else {
assert(Rec->isSubClassOf("Operand") && "Unexpected operand!"); // <-
line 856
// FIXME: We may need to handle these situations.
delete IAP;
IAP = 0;
CantHandle =...