lldb: show disasembly if frame unusable

This commit is contained in:
Arvid Ephraim Picciani
2010-12-02 12:33:49 +01:00
parent 27279c3663
commit e89be165f0

View File

@@ -424,7 +424,7 @@ void IPCEngineHost::rpcCallback(quint64 f, QByteArray payload)
resetLocation();
StackHandler *sh = stackHandler();
sh->setCurrentIndex(token);
if (QFileInfo(sh->currentFrame().file).exists())
if (!sh->currentFrame().isUsable() || QFileInfo(sh->currentFrame().file).exists())
gotoLocation(sh->currentFrame(), true);
else
fetchFrameSource(token);