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.
10 lines
135 B
C
10 lines
135 B
C
#ifndef BASE_PCH_H_IN
|
|
#define BASE_PCH_H_IN
|
|
|
|
struct [[gnu::aligned(128)]] RowCol {
|
|
unsigned row;
|
|
unsigned col;
|
|
};
|
|
|
|
#endif // _H_IN
|