blob: 06e3521c1522ee7806cb787ab05b9fdfb569c270 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "shared.h"
__attribute__((noinline))
static void helper() {
tail_called_in_a_from_main();
}
__attribute__((disable_tail_calls))
int main() {
helper();
return 0;
}
|