forked from qt-creator/qt-creator
Debugger[CDB]: Display more context in disassembly.
Emulate gdb's behaviour trying to disassemble the function. Task-number: QTCREATORBUG-5205 Change-Id: I2f4dc9393e12324b0423734c5235758a25395fec Reviewed-on: http://codereview.qt.nokia.com/1029 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
@@ -100,6 +100,7 @@ public:
|
||||
Location(const StackFrame &frame, bool marker = true);
|
||||
QString fileName() const { return m_fileName; }
|
||||
QString functionName() const { return m_functionName; }
|
||||
QString from() const { return m_from; }
|
||||
int lineNumber() const { return m_lineNumber; }
|
||||
void setNeedsRaise(bool on) { m_needsRaise = on; }
|
||||
void setNeedsMarker(bool on) { m_needsMarker = on; }
|
||||
@@ -118,6 +119,7 @@ private:
|
||||
int m_lineNumber;
|
||||
QString m_fileName;
|
||||
QString m_functionName;
|
||||
QString m_from;
|
||||
quint64 m_address;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user