mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
19 lines
199 B
C
19 lines
199 B
C
extern "C" {
|
|
|
|
inline void inlineFn();
|
|
|
|
void cacheMiss() { }
|
|
void incorrectCacheHit() {
|
|
inlineFn();
|
|
}
|
|
|
|
static void caller() {
|
|
cacheMiss();
|
|
incorrectCacheHit();
|
|
}
|
|
|
|
inline void inlineFn() { }
|
|
|
|
}
|
|
|