diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-11-10 18:11:10 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-11-10 18:11:10 +0000 |
commit | 4aa6bea7a2d79ddbb0023baaa7ce5009d1f6dfbd (patch) | |
tree | 62ea0ca2dbca372d6a5b2c2f3e134ead9085dd25 /llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp | |
parent | 94794d08b94a8329d3f833ef0d2ac01938dd9cce (diff) | |
download | llvm-4aa6bea7a2d79ddbb0023baaa7ce5009d1f6dfbd.zip llvm-4aa6bea7a2d79ddbb0023baaa7ce5009d1f6dfbd.tar.gz llvm-4aa6bea7a2d79ddbb0023baaa7ce5009d1f6dfbd.tar.bz2 |
Misc style fixes. NFC.
This fixes a few cases of:
* Wrong variable name style.
* Lines longer than 80 columns.
* Repeated names in comments.
* clang-format of the above.
This make the next patch a lot easier to read.
llvm-svn: 221615
Diffstat (limited to 'llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp b/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp index 2350776..2b0ae3c 100644 --- a/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp +++ b/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp @@ -28,11 +28,10 @@ public: : MCDisassembler(STI, Ctx) {} virtual ~SystemZDisassembler() {} - // Override MCDisassembler. - DecodeStatus getInstruction(MCInst &instr, uint64_t &size, - const MemoryObject ®ion, uint64_t address, - raw_ostream &vStream, - raw_ostream &cStream) const override; + DecodeStatus getInstruction(MCInst &Instr, uint64_t &Size, + const MemoryObject &Region, uint64_t Address, + raw_ostream &VStream, + raw_ostream &CStream) const override; }; } // end anonymous namespace @@ -290,8 +289,8 @@ static DecodeStatus decodeBDLAddr64Disp12Len8Operand(MCInst &Inst, DecodeStatus SystemZDisassembler::getInstruction(MCInst &MI, uint64_t &Size, const MemoryObject &Region, uint64_t Address, - raw_ostream &os, - raw_ostream &cs) const { + raw_ostream &OS, + raw_ostream &CS) const { // Get the first two bytes of the instruction. uint8_t Bytes[6]; Size = 0; |