blob: 06e3521c1522ee7806cb787ab05b9fdfb569c270 [file] [log] [blame]
#include "shared.h"
__attribute__((noinline))
static void helper() {
tail_called_in_a_from_main();
}
__attribute__((disable_tail_calls))
int main() {
helper();
return 0;
}