Displaying 2 results from an estimated 2 matches for "printannot".
2013 Sep 17
0
[LLVMdev] [patch] alias instruction for Intel syntax
...39,7 +39,8 @@ void X86IntelInstPrinter::printInst(const MCInst *MI,
raw_ostream &OS,
if (TSFlags & X86II::LOCK)
OS << "\tlock\n";
- printInstruction(MI, OS);
+ if (!printAliasInstr(MI, OS))
+ printInstruction(MI, OS);
// Next always print the annotation.
printAnnotation(OS, Annot);
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130917/5dab3f16/attachment.html>
2012 Apr 19
0
[LLVMdev] Target Dependent Hexagon Packetizer patch
...the packet in a new line always, since the GNU assembler has
>> + // issues with a closing brace on the same line as CONST{32,64}.
>> + O<< '\n'<< packetPadding<< endPacket;
>> }
>>
>> - printInstruction(MI, O);
>> printAnnotation(O, Annot);
>> }
>>
>> @@ -65,22 +96,22 @@ void HexagonInstPrinter::printOperand(const MCInst *MI, unsigned OpNo,
>> } else if(MO.isImm()) {
>> printImmOperand(MI, OpNo, O);
>> } else {
>> - assert(false&& "Unknown opera...