mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Bug 100445: The endianess of a debug target is reversed.
This commit is contained in:
parent
1b6e13f52d
commit
4f60c4a7aa
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-06-16 Mikhail Khodjaiants
|
||||
Bug 100445: The endianess of a debug target is reversed.
|
||||
* CMemoryBlockExtension.java
|
||||
|
||||
2005-06-16 Mikhail Khodjaiants
|
||||
Partial fix for bug 79371: Setting breakpoints in the left hand side ruler of the disassembly view is sluggish.
|
||||
* CBreakpointManager.java
|
||||
|
|
|
@ -192,7 +192,7 @@ public class CMemoryBlockExtension extends CDebugElement implements IMemoryBlock
|
|||
private boolean isBigEndian() {
|
||||
IExecFileInfo info = (IExecFileInfo)getDebugTarget().getAdapter( IExecFileInfo.class );
|
||||
if ( info != null ) {
|
||||
return info.isLittleEndian();
|
||||
return !info.isLittleEndian();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue