|
1 | | -//===- DWARFDebugFrame.h - Parsing of .debug_frame ------------------------===// |
| 1 | +//===- DWARFCFIProgram.cpp - Parsing the cfi-portions of .debug_frame -----===// |
2 | 2 | // |
3 | 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
4 | 4 | // See https://llvm.org/LICENSE.txt for license information. |
@@ -35,7 +35,6 @@ static void printRegister(raw_ostream &OS, DIDumpOptions DumpOpts, |
35 | 35 | OS << "reg" << RegNum; |
36 | 36 | } |
37 | 37 |
|
38 | | - |
39 | 38 | // See DWARF standard v3, section 7.23 |
40 | 39 | const uint8_t DWARF_CFI_PRIMARY_OPCODE_MASK = 0xc0; |
41 | 40 | const uint8_t DWARF_CFI_PRIMARY_OPERAND_MASK = 0x3f; |
@@ -379,7 +378,7 @@ void CFIProgram::printOperand(raw_ostream &OS, DIDumpOptions DumpOpts, |
379 | 378 | if (!OpcodeName.empty()) |
380 | 379 | OS << " " << OpcodeName; |
381 | 380 | else |
382 | | - OS << format(" Opcode %x", Opcode); |
| 381 | + OS << format(" Opcode %x", Opcode); |
383 | 382 | break; |
384 | 383 | } |
385 | 384 | case OT_None: |
@@ -408,13 +407,13 @@ void CFIProgram::printOperand(raw_ostream &OS, DIDumpOptions DumpOpts, |
408 | 407 | if (DataAlignmentFactor) |
409 | 408 | OS << format(" %" PRId64, int64_t(Operand) * DataAlignmentFactor); |
410 | 409 | else |
411 | | - OS << format(" %" PRId64 "*data_alignment_factor" , int64_t(Operand)); |
| 410 | + OS << format(" %" PRId64 "*data_alignment_factor", int64_t(Operand)); |
412 | 411 | break; |
413 | 412 | case OT_UnsignedFactDataOffset: |
414 | 413 | if (DataAlignmentFactor) |
415 | 414 | OS << format(" %" PRId64, Operand * DataAlignmentFactor); |
416 | 415 | else |
417 | | - OS << format(" %" PRId64 "*data_alignment_factor" , Operand); |
| 416 | + OS << format(" %" PRId64 "*data_alignment_factor", Operand); |
418 | 417 | break; |
419 | 418 | case OT_Register: |
420 | 419 | OS << ' '; |
|
0 commit comments