<div dir="ltr">Hi all,<div> Consider this code:</div><div>```</div><div><div>void foo(int& x)</div><div>{</div><div>    ++x;</div><div>    // Breakpoint</div><div>}</div></div><div>```</div><div><br></div><div>Reference parameter `x` is shown like this:</div><div>```</div><div><div>(lldb) frame variable</div><div>(int &) x = 0x00007fff5fbff5e8 (&x = 33)</div></div><div>```</div><div><br></div><div>Should this perhaps be improved? (I find the "&x = 33" a little confusing)</div><div>Some ideas:</div><div>A.    (int &) x = 0x00007fff5fbff5e8 (*x = 33)</div><div>B.    (int &) x = 33 (&x = 0x00007fff5fbff5e8)</div><div><br></div><div>Cheers,</div><div>  Johan</div><div><br></div></div>