mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This caused non-deterministic crashes when a high number of modules containing diagnostics were compiled for the first time. The 9-entry test case results in a crash on 64-bit macOS when run under Guard Malloc without this change. rdar://problem/33515925
5 lines
84 B
C
5 lines
84 B
C
extern void old() __attribute__((deprecated));
|
|
static void warnings5() {
|
|
old();
|
|
}
|