Discussion thread: https://lists.llvm.org/pipermail/llvm-dev/2021-January/148048.html Move debuginfo-test into a subdirectory of a new top-level directory, called cross-project-tests. The new name replaces "debuginfo-test" as an LLVM project enabled via LLVM_ENABLE_PROJECTS. Differential Revision: https://reviews.llvm.org/D95339 Reviewed by: aprantl
30 lines
621 B
C++
30 lines
621 B
C++
// Purpose:
|
|
// Ensure that debug information for a local variable does not hide
|
|
// a global definition that has the same name.
|
|
|
|
// REQUIRES: lldb
|
|
// UNSUPPORTED: system-windows
|
|
|
|
// RUN: %dexter --fail-lt 1.0 -w \
|
|
// RUN: --builder 'clang' --debugger 'lldb' \
|
|
// RUN: --cflags "-g -O0" -v -- %s
|
|
|
|
const int d = 100;
|
|
|
|
extern int foo();
|
|
|
|
int main() {
|
|
const int d = 4;
|
|
const float e = 4; // DexLabel("main")
|
|
const char *f = "Woopy";
|
|
return d + foo();
|
|
}
|
|
|
|
int foo() {
|
|
return d; // DexLabel("foo")
|
|
}
|
|
|
|
// DexExpectWatchValue('d', '4', on_line=ref('main'))
|
|
// DexExpectWatchValue('d', '100', on_line=ref('foo'))
|
|
|