diff options
author | Andreas Gampe <agampe@google.com> | 2018-10-04 11:03:34 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2018-10-09 14:38:45 -0700 |
commit | 9b031f7e4834b263ae531409a9f6c82cfdc89477 (patch) | |
tree | 4b5fdfc3ecc12b5b7e32959bec0c26595b87d2ab /disassembler/disassembler.cc | |
parent | c71f38bdf7dca39a070ba25d436edcd758551f42 (diff) |
ART: Refactor for bugprone-argument-comment
Handles smaller subdirectories.
Bug: 116054210
Test: WITH_TIDY=1 mmma art
Change-Id: I81c8f3396b9922684b68e9f3d8fccefe364f1279
Diffstat (limited to 'disassembler/disassembler.cc')
-rw-r--r-- | disassembler/disassembler.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/disassembler/disassembler.cc b/disassembler/disassembler.cc index 2ed41c860a..262e8152fb 100644 --- a/disassembler/disassembler.cc +++ b/disassembler/disassembler.cc @@ -41,9 +41,9 @@ Disassembler* Disassembler::Create(InstructionSet instruction_set, DisassemblerO } else if (instruction_set == InstructionSet::kArm64) { return new arm64::DisassemblerArm64(options); } else if (instruction_set == InstructionSet::kMips) { - return new mips::DisassemblerMips(options, /* is_o32_abi */ true); + return new mips::DisassemblerMips(options, /* is_o32_abi= */ true); } else if (instruction_set == InstructionSet::kMips64) { - return new mips::DisassemblerMips(options, /* is_o32_abi */ false); + return new mips::DisassemblerMips(options, /* is_o32_abi= */ false); } else if (instruction_set == InstructionSet::kX86) { return new x86::DisassemblerX86(options, false); } else if (instruction_set == InstructionSet::kX86_64) { |