d4578c67a2614f3889ede25b680e98238f3ac99f
[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("bt", "main.cpp", "-implicit-check-not=artificial")
13   // CHECK: frame #0: 0x{{[0-9a-f]+}} a.out`sink() at main.cpp:[[@LINE-1]]:4 [opt]
14   // CHECK-NEXT: func2{{.*}} [opt] [artificial]
15   // CHECK-NEXT: main{{.*}} [opt]
16 }
17
18 void __attribute__((noinline)) func2() {
19   sink(); /* tail */
20 }
21
22 void __attribute__((noinline)) func1() { sink(); /* tail */ }
23
24 int __attribute__((disable_tail_calls)) main(int argc, char **) {
25   // The sequences `main -> f{1,2} -> sink` are both plausible. Test that
26   // return-pc call site info allows lldb to pick the correct sequence.
27   func2();
28   if (argc == 100)
29     func1();
30   return 0;
31 }