[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / lldb / test / API / functionalities / target_var / main.c
blobcbc379d9f0933a8aeba891e41e14cc7bfef60ff5
1 int i = 42;
2 int *p = &i;
4 struct incomplete;
5 struct incomplete *var = (struct incomplete *)0xdead;
7 int main() { return *p; }