Arg x doesn't escape in BB entry in func_with_ptr_arg ```c++ static void func_with_ptr_arg(int *x) { if (rand()) GPtr = x; } void caller() { int x; func_with_ptr_arg(&x); } ```
Arg x doesn't escape in BB entry in func_with_ptr_arg