[LoopInterchange] Hoist isComputableLoopNest() in the control flow (#124247)
[llvm-project.git] / lldb / test / API / commands / expression / persistent_ptr_update / main.c
blob73346969eccc441ece44f91c32b196e35dcd70f9
1 void* foo(void *p)
3 return p; // break here
6 int main() {
7 while (1) {
8 foo(0);
10 return 0;