[PATCH] D132900: [DWARF] Fix infinite recursion in Type Printer.

Alexander Yermolovich via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 19 16:08:43 PDT 2022


ayermolo added a comment.

  class codecvt
  {
    public:
      void out() const {}
  };
  
  
  void test() {
    using _Codecvt = codecvt;
    using _ConvFn = void(_Codecvt::*)() const;
    _ConvFn __fn = &_Codecvt::out;
  }


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D132900



More information about the llvm-commits mailing list