1
0
Fork 0
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:
Anton Leherbauer 2010-08-25 14:28:41 +00:00
parent 04303cfd0e
commit 017a6ef082

View file

@ -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) {