[PATCH] D68440: [llvm-profdata] Minor format fix

Wenlei He via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 3 21:31:13 PDT 2019


wenlei added a comment.

Before:

  ...
    13.1: inlined callee: _ZN6StringD2Ev: 0, 0, 0 sampled lines
      No samples collected in the function's body
      Samples collected in inlined callsites {
        0: inlined callee: _ZN6String4freeEv: 0, 0, 6 sampled lines
          Samples collected in the function's body {
            2: 0
            4: 0
            5: 0
            6: 0
            7: 0
            8: 0
          }
          Samples collected in inlined callsites {
            6: inlined callee: my_free: 0, 0, 1 sampled lines
              Samples collected in the function's body {
                4: 0
              }
              No inlined callsites in this function
  }
  }
  }

After:

  ...
    13.1: inlined callee: _ZN6StringD2Ev: 0, 0, 0 sampled lines
      No samples collected in the function's body
      Samples collected in inlined callsites {
        0: inlined callee: _ZN6String4freeEv: 0, 0, 6 sampled lines
          Samples collected in the function's body {
            2: 0
            4: 0
            5: 0
            6: 0
            7: 0
            8: 0
          }
          Samples collected in inlined callsites {
            6: inlined callee: my_free: 0, 0, 1 sampled lines
              Samples collected in the function's body {
                4: 0
              }
              No inlined callsites in this function
          }
      }
  }


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D68440





More information about the llvm-commits mailing list