1
0
Fork 0
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:
Mikhail Khodjaiants 2005-06-16 17:51:21 +00:00
parent 1b6e13f52d
commit 4f60c4a7aa
2 changed files with 5 additions and 1 deletions

View file

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

View file

@ -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;
}