brintos

brintos / llvm-project-archived public Read only

0
0
Text · 289 B · 36eb299 Raw
8 lines · cpp
1// RUN: %clangxx --target=x86_64-pc-linux -g -gsplit-dwarf -c %s -o %t.o2// RUN: rm %t.dwo3// RUN: %lldb %t.o -o "br set -n main" -o exit 2>&1 | FileCheck %s4 5// CHECK: warning: {{.*}} unable to locate separate debug file (dwo, dwp). Debugging will be degraded.6 7int main() { return 47; }8