[PATCH] D30378: [DebugInfo] [DWARFv5] Collect calling convention info for C++ types during codegen

2017-02-27 Thread Victor Leschuk via Phabricator via cfe-commits
vleschuk added inline comments. Comment at: test/CodeGenCXX/debug-info-type-calling-conventions.cpp:11-12 + +class UserDtor { +public: + ~UserDtor() {} dblaikie wrote: > I'd probably make this a struct (and drop the 'public:' section since it'll > be the defaul

[PATCH] D30378: [DebugInfo] [DWARFv5] Collect calling convention info for C++ types during codegen

2017-02-25 Thread Victor Leschuk via Phabricator via cfe-commits
vleschuk created this revision. When generating debug info collect information on calling convention for types (http://www.dwarfstd.org/ShowIssue.php?issue=141215.1) and pass it to backend. https://reviews.llvm.org/D30378 Files: lib/CodeGen/CGDebugInfo.cpp lib/CodeGen/CGDebugInfo.h test/