diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp index 46da3405b8c99fc1025b250b9f9ae4f94576d180..f10fd3c9018c50bc0f50bff4a8c6bb3a730565a7 100644 --- a/src/plugins/debugger/debuggerplugin.cpp +++ b/src/plugins/debugger/debuggerplugin.cpp @@ -554,14 +554,21 @@ static TextEditor::ITextEditor *currentTextEditor() static bool currentTextEditorPosition(ContextData *data) { - if (TextEditor::ITextEditor *textEditor = currentTextEditor()) { - if (const Core::IFile *file = textEditor->file()) { - data->fileName = file->fileName(); - data->lineNumber = textEditor->currentLine(); - return true; - } + TextEditor::ITextEditor *textEditor = currentTextEditor(); + if (!textEditor) + return false; + const Core::IFile *file = textEditor->file(); + QTC_ASSERT(file, return false); + data->fileName = file->fileName(); + if (textEditor->property("DisassemblerView").toBool()) { + int lineNumber = textEditor->currentLine(); + QString line = textEditor->contents() + .section(QLatin1Char('\n'), lineNumber - 1, lineNumber - 1); + data->address = DisassemblerLine::addressFromDisassemblyLine(line); + } else { + data->lineNumber = textEditor->currentLine(); } - return false; + return true; } ///////////////////////////////////////////////////////////////////////