diff options
author | Sean Callanan <scallanan@apple.com> | 2010-02-09 23:06:35 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-02-09 23:06:35 +0000 |
commit | d4b19e12ed6ec6a9c944c18ac3a21d76f5f3c22e (patch) | |
tree | f28c6946a2d3184f9ed40e6073c78ae184c5c81f /llvm/utils/TableGen/AsmWriterInst.h | |
parent | c6ee3766928fa392797cb7be64cd714ffca09080 (diff) | |
download | bcm5719-llvm-d4b19e12ed6ec6a9c944c18ac3a21d76f5f3c22e.tar.gz bcm5719-llvm-d4b19e12ed6ec6a9c944c18ac3a21d76f5f3c22e.zip |
Fixed some indentation in the AsmWriterInst
implementation. Also changed the constructor
so that it does not require a Record, making it
usable by the EDEmitter.
llvm-svn: 95715
Diffstat (limited to 'llvm/utils/TableGen/AsmWriterInst.h')
-rw-r--r-- | llvm/utils/TableGen/AsmWriterInst.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/utils/TableGen/AsmWriterInst.h b/llvm/utils/TableGen/AsmWriterInst.h index 7ea69ce27bd..5a8cf7708bd 100644 --- a/llvm/utils/TableGen/AsmWriterInst.h +++ b/llvm/utils/TableGen/AsmWriterInst.h @@ -81,7 +81,10 @@ namespace llvm { std::vector<AsmWriterOperand> Operands; const CodeGenInstruction *CGI; - AsmWriterInst(const CodeGenInstruction &CGI, Record *AsmWriter); + AsmWriterInst(const CodeGenInstruction &CGI, + unsigned Variant, + int FirstOperandColumn, + int OperandSpacing); /// MatchesAllButOneOp - If this instruction is exactly identical to the /// specified instruction except for one differing operand, return the |