[PATCH] D81820: [ObjectYAML][ELF] Add support for emitting the .debug_abbrev section.

Zhihao Yuan via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 17 13:29:55 PDT 2020


lichray added a comment.

In D81820#2098654 <https://reviews.llvm.org/D81820#2098654>, @MaskRay wrote:

> In D81820#2094624 <https://reviews.llvm.org/D81820#2094624>, @Higuoxing wrote:
>
> > OR
> >
> >   # CONTENT-NEXT: 0000: 01110125
> >                         ^~       ULEB28 abbreviation code
> >                           ^~     ULEB128 DW_TAG_compile_unit
> >                             ^~   1-byte DW_CHILDREN_yes
> >                               ^~ ULEB128 DW_AT_producer
> >
>
>
>


It may be more readable if the two columns are aligned separately:

  # CONTENT-NEXT: 0000: 01110125
                        ^~       abbreviation code    ULEB128
                          ^~     DW_TAG_compile_unit  ULEB128
                            ^~   DW_CHILDREN_yes       1-byte
                              ^~ DW_AT_producer       ULEB128


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D81820/new/

https://reviews.llvm.org/D81820





More information about the llvm-commits mailing list