That last line of code should be on the callstack.
Actually what will be there is the line into which it would have returned, if there had not been an error. That may either be the line that made the call, or it will be the next line. (Depending on any code still un-executed in the calling line / like a "result :=")
With older versions the line was sometimes missing, if the LCL/RTL was compiled with certain optimization (*). This may occasionally still happen with 3.2, but should be fine trunk.
(*)
Missing here means that the line you called is there. And the line that called your code is there. But not your code.
There is another missing, in that the stack doesn't show enough lines. Even if you click the button to show more. => That can happen if the error is a corrupt stack. The the error destroyed the info on that last calling line...