forked from qt-creator/qt-creator
lldb: show disasembly if frame unusable
This commit is contained in:
@@ -424,7 +424,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
|
|||||||
resetLocation();
|
resetLocation();
|
||||||
StackHandler *sh = stackHandler();
|
StackHandler *sh = stackHandler();
|
||||||
sh->setCurrentIndex(token);
|
sh->setCurrentIndex(token);
|
||||||
if (QFileInfo(sh->currentFrame().file).exists())
|
if (!sh->currentFrame().isUsable() || QFileInfo(sh->currentFrame().file).exists())
|
||||||
gotoLocation(sh->currentFrame(), true);
|
gotoLocation(sh->currentFrame(), true);
|
||||||
else
|
else
|
||||||
fetchFrameSource(token);
|
fetchFrameSource(token);
|
||||||
|
|||||||
Reference in New Issue
Block a user