df43bcc98eaa0af537b88eb4f6da0f146c9b69fc
[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++; //% self.filecheck("finish", "main.cpp", "-implicit-check-not=artificial")
13   // CHECK: stop reason = step out
14   // CHECK-NEXT: Stepped out past: frame #1: 0x{{[0-9a-f]+}} a.out`func3{{.*}} [opt] [artificial]
15   // CHECK: frame #0: 0x{{[0-9a-f]+}} a.out`func2{{.*}} [opt]
16 }
17
18 void __attribute__((noinline)) func3() { sink(); /* tail */ }
19
20 void __attribute__((disable_tail_calls, noinline)) func2() { func3(); /* regular */ }
21
22 void __attribute__((noinline)) func1() { func2(); /* tail */ }
23
24 int __attribute__((disable_tail_calls)) main() {
25   func1(); /* regular */
26   return 0;
27 }