mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-24 14:05:49 -04:00

This fixes a bug in -gmodules DWARF handling when debugging without a .dSYM bundle that was particularly noticable when debugging LLVM itself. Debugging without clang modules and DWO handling should be unaffected by this patch. <rdar://problem/32436209> llvm-svn: 321802
8 lines
128 B
C++
8 lines
128 B
C++
#include "memory.h"
|
|
|
|
class MemoryBuffer { int buffer = 42; };
|
|
|
|
struct SrcBuffer {
|
|
my_std::unique_ptr<MemoryBuffer> Buffer;
|
|
};
|