This change by itself has no measurable effect on the LLDB testsuite. I'm making it in preparation for threading through more errors in the Swift language plugin.
15 lines
217 B
C
15 lines
217 B
C
struct Structure {
|
|
int number;
|
|
};
|
|
|
|
struct Opaque;
|
|
int puts(const char *s);
|
|
|
|
int main(int argc, char **argv) {
|
|
struct Structure s;
|
|
s.number = 30;
|
|
struct Opaque *opaque = &s;
|
|
puts("break here");
|
|
return 0;
|
|
}
|