mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug 323279 - Disassembly view not possible to display address size < 32 bits
Patch from Patrick Chuong (TI)
This commit is contained in:
parent
04303cfd0e
commit
017a6ef082
1 changed files with 2 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
* Contributors:
|
||||
* Wind River Systems - initial API and implementation
|
||||
* Freescale Semiconductor - refactoring
|
||||
* Patrick Chuong (Texas Instruments) - Bug 323279
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.dsf.debug.internal.ui.disassembly;
|
||||
|
||||
|
@ -271,7 +272,7 @@ public class DisassemblyBackendDsf implements IDisassemblyBackend, SessionEndedL
|
|||
if (DEBUG) System.out.println("retrieveFrameAddress done "+ DisassemblyUtils.getAddressText(addressValue)); //$NON-NLS-1$
|
||||
fCallback.asyncExec(new Runnable() {
|
||||
public void run() {
|
||||
if (address.getSize() * 8 > fCallback.getAddressSize()) {
|
||||
if (address.getSize() * 8 != fCallback.getAddressSize()) {
|
||||
fCallback.addressSizeChanged(address.getSize() * 8);
|
||||
}
|
||||
if (frame == 0) {
|
||||
|
|
Loading…
Add table
Reference in a new issue