[llvm] 338beff - DwarfDebug.cpp: Fix some indentation

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 31 16:02:08 PST 2020


Author: David Blaikie
Date: 2020-01-31T16:01:57-08:00
New Revision: 338beff4dc7b11816a79b449082e7a9d74b27c27

URL: https://github.com/llvm/llvm-project/commit/338beff4dc7b11816a79b449082e7a9d74b27c27
DIFF: https://github.com/llvm/llvm-project/commit/338beff4dc7b11816a79b449082e7a9d74b27c27.diff

LOG: DwarfDebug.cpp: Fix some indentation

Added: 
    

Modified: 
    llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
index 527250f72086..50ceb1f1c117 100644
--- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -2238,18 +2238,19 @@ void DwarfDebug::emitDebugLocEntry(ByteStreamer &Streamer,
       if (Op.getDescription().Op[I] == Encoding::SizeNA)
         continue;
       if (Op.getDescription().Op[I] == Encoding::BaseTypeRef) {
-          if (CU) {
-            uint64_t Offset = CU->ExprRefedBaseTypes[Op.getRawOperand(I)].Die->getOffset();
-            assert(Offset < (1ULL << (ULEB128PadSize * 7)) && "Offset wont fit");
-            Asm->EmitULEB128(Offset, nullptr, ULEB128PadSize);
-          } else {
-            // Emit a reference to the 'generic type'.
-            Asm->EmitULEB128(0, nullptr, ULEB128PadSize);
-          }
-          // Make sure comments stay aligned.
-          for (unsigned J = 0; J < ULEB128PadSize; ++J)
-            if (Comment != End)
-              Comment++;
+        if (CU) {
+          uint64_t Offset =
+              CU->ExprRefedBaseTypes[Op.getRawOperand(I)].Die->getOffset();
+          assert(Offset < (1ULL << (ULEB128PadSize * 7)) && "Offset wont fit");
+          Asm->EmitULEB128(Offset, nullptr, ULEB128PadSize);
+        } else {
+          // Emit a reference to the 'generic type'.
+          Asm->EmitULEB128(0, nullptr, ULEB128PadSize);
+        }
+        // Make sure comments stay aligned.
+        for (unsigned J = 0; J < ULEB128PadSize; ++J)
+          if (Comment != End)
+            Comment++;
       } else {
         for (uint64_t J = Offset; J < Op.getOperandEndOffset(I); ++J)
           Streamer.EmitInt8(Data.getData()[J], Comment != End ? *(Comment++) : "");


        


More information about the llvm-commits mailing list