Files
clang-p2996/lldb/test/API/lang/cpp/static_members/main.cpp
Andy Yankovsky 2e0ef179d8 [lldb] Add a positive test for getelementptr constant args
The IR interpreter supports const operands to the `GetElementPtr` IR
instruction, so it should be able to evaluate expression without JIT.

Follow up to https://reviews.llvm.org/D113498

Reviewed By: shafik

Differential Revision: https://reviews.llvm.org/D119734
2022-02-14 18:04:37 +00:00

23 lines
282 B
C++

struct A {
short m_a;
static long s_b;
static int s_c;
long access() {
return m_a + s_b + s_c; // stop in member function
}
};
long A::s_b = 2;
int A::s_c = 3;
int main() {
A my_a;
my_a.m_a = 1;
int arr[2]{0};
my_a.access(); // stop in main
return 0;
}