s/requires/REQUIRES to fix the test on release build
[llvm-project.git] / lldb / test / Shell / SymbolFile / DWARF / x86 / split-dwarf-inlining.cpp
blob39c3fd6433496514e18d9dde524a26e3826aaa9b
1 // RUN: %clangxx -target x86_64-pc-linux -gsplit-dwarf -g -fsplit-dwarf-inlining \
2 // RUN: -c %s -o %t
3 // RUN: %lldb %t -o "breakpoint set -n foo" -b | FileCheck %s
5 // CHECK: Breakpoint 1: 2 locations
7 __attribute__((always_inline)) int foo(int x) { return x; }
8 int bar(int x) { return foo(x); }