brintos

brintos / llvm-project-archived public Read only

0
0
Text · 180 B · 06e3521 Raw
13 lines · c
1#include "shared.h"2 3__attribute__((noinline))4static void helper() {5  tail_called_in_a_from_main();6}7 8__attribute__((disable_tail_calls))9int main() {10  helper();11  return 0;12}13