4a647031ef158093ed4d87101b0b3f76ab93926a
[openbsd] /
1 //===-- main.cpp ------------------------------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 volatile int x;
10
11 void __attribute__((noinline)) sink() {
12   x++; // break here
13 }
14
15 void __attribute__((noinline)) func3() { sink(); /* tail */ }
16
17 void __attribute__((disable_tail_calls, noinline)) func2() { func3(); /* regular */ }
18
19 void __attribute__((noinline)) func1() { func2(); /* tail */ }
20
21 int __attribute__((disable_tail_calls)) main() {
22   func1(); /* regular */
23   return 0;
24 }