[PATCH] D13743: Lazily sort ScopesWithImportedEntities to speed up LTO linking.

Ivan Krasin via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 16 14:04:46 PDT 2015


krasin added a comment.

I have got the first results from my debug run:

  bool DwarfCompileUnit::includeMinimalInlineScopes() const {
    fprintf(stderr, "DwarfCompileUnit::includeMinimalInlineScopes, emission kind: %d\n", (int)getCUNode()->getEmissionKind());
    fprintf(stderr, "useSplitDwarf: %d\n", (int)DD->useSplitDwarf());
    fprintf(stderr, "Skeleton: %p\n", (void*)Skeleton);
    _exit(1);
  ...



  DwarfCompileUnit::includeMinimalInlineScopes, emission kind: 1
  useSplitDwarf: 0
  Skeleton: (nil)

Now, I need to understand why does DwarfCompileUnit::includeMinimalInlineScopes is set.


http://reviews.llvm.org/D13743





More information about the llvm-commits mailing list