OSDN Git Service

Fix inconsistent line endings in ARCDisassembler.cpp. NFC.
authorDimitry Andric <dimitry@andric.com>
Mon, 18 Dec 2017 18:45:37 +0000 (18:45 +0000)
committerDimitry Andric <dimitry@andric.com>
Mon, 18 Dec 2017 18:45:37 +0000 (18:45 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321006 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/ARC/Disassembler/ARCDisassembler.cpp

index 82199d8..dd18176 100644 (file)
@@ -273,9 +273,9 @@ static DecodeStatus DecodeMoveHRegInstruction(MCInst &Inst, uint64_t Insn,
                                               const void *Decoder) {
   DEBUG(dbgs() << "Decoding MOV_S h-register\n");
   using Field = decltype(Insn);
-  Field h = fieldFromInstruction(Insn, 5, 3) |\r
-            (fieldFromInstruction(Insn, 0, 2) << 3);\r
-  Field g = fieldFromInstruction(Insn, 8, 3) |\r
+  Field h = fieldFromInstruction(Insn, 5, 3) |
+            (fieldFromInstruction(Insn, 0, 2) << 3);
+  Field g = fieldFromInstruction(Insn, 8, 3) |
             (fieldFromInstruction(Insn, 3, 2) << 3);
 
   auto DecodeRegisterOrImm = [&Inst, Address, Decoder](Field RegNum,