Adds a test-case for debugging a program with a pch chain, that is, the main executable depends on a pch that itself included another pch. Currently clang doesn't emit the sekeleton CUs required for LLDB to track all types on the pch chain. Thus this test is XFAILed for now.
17 lines
284 B
C
17 lines
284 B
C
#ifndef PCH_H_IN
|
|
#define PCH_H_IN
|
|
|
|
static const int kAlignment = 64;
|
|
|
|
struct [[gnu::aligned(kAlignment)]] Submatrix {
|
|
struct RowCol origin;
|
|
struct RowCol size;
|
|
};
|
|
|
|
struct [[gnu::aligned(kAlignment)]] MatrixData {
|
|
struct Submatrix section;
|
|
unsigned stride;
|
|
};
|
|
|
|
#endif // _H_IN
|