Displaying 2 results from an estimated 2 matches for "opcodedecisions".
2009 Aug 22
0
[LLVMdev] X86 Disassembler
...this:
+void DisassemblerTables::emitContextDecision(
+ std::ostream& o2,
+ Indenter& i2,
...
+ o2 << i2.indent() << "struct ContextDecision " << name << " = {" <<
std::endl;
+ i2.push();
+ o2 << i2.indent() << "{ /* opcodeDecisions */" << std::endl;
+ i2.push();
You can use:
+void DisassemblerTables::emitContextDecision(
+ raw_ostream &o2,
+ unsigned &Indent2,
+ o2.indent(Indent2++) << "struct ContextDecision " << name << " =
{\n";
+ o2.indent(Indent2++) <&...
2009 Aug 19
3
[LLVMdev] X86 Disassembler
Bill,
thanks for your comments. I'll respond to them individually. I've
attached a new revision of the patch that addresses them. Patch built
and tested against SVN 79487, with the additional attached fix that
fixes an Intel table bug.
Sean
On 2009/08/18, at 0:57, Bill Wendling wrote:
> 0. Watch out for tabs!
Fixed. Thanks.
> 1. Includes like this "#include