[PATCH] D118857: [DWARF][codegen] Fix for Aranges when split inlining is present

Alexander Yermolovich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 2 17:00:58 PST 2022


ayermolo added a comment.

  bool IsSplitDebugInlining = this->getCUNode()->getSplitDebugInlining();
  bool IsSkeletonCU = DD->useSplitDwarf() && !Skeleton;
  bool NoneSkeletonCU = DD->useSplitDwarf() && Skeleton;
  bool ShouldEmitArangeLabel = (!IsSplitDebugInlining && IsSkeletonCU) || NoneSkeletonCU || !DD->useSplitDwarf();

Going to do a bit more testing, before updating this review.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D118857



More information about the llvm-commits mailing list