aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/Shell/SymbolFile/DWARF/x86/dwo-not-found-warning.cpp
blob: 36eb299f066303e0c505ba52a3762f0f93403875 (plain)
1
2
3
4
5
6
7
// RUN: %clangxx --target=x86_64-pc-linux -g -gsplit-dwarf -c %s -o %t.o
// RUN: rm %t.dwo
// RUN: %lldb %t.o -o "br set -n main" -o exit 2>&1 | FileCheck %s

// CHECK: warning: {{.*}} unable to locate separate debug file (dwo, dwp). Debugging will be degraded.

int main() { return 47; }