mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
The endianness flag is not chached.
This commit is contained in:
parent
20da0b9f50
commit
8fca28089c
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2005-06-07 Mikhail Khodjaiants
|
||||||
|
The endianness flag is not chached.
|
||||||
|
* CDebugTarget.java
|
||||||
|
|
||||||
2005-06-06 Mikhail Khodjaiants
|
2005-06-06 Mikhail Khodjaiants
|
||||||
Bug 98594: Unable to set address breakpoints.
|
Bug 98594: Unable to set address breakpoints.
|
||||||
* CBreakpointManager.java
|
* CBreakpointManager.java
|
||||||
|
|
|
@ -1311,8 +1311,8 @@ public class CDebugTarget extends CDebugElement implements ICDebugTarget, ICDIEv
|
||||||
fIsLittleEndian = Boolean.TRUE;
|
fIsLittleEndian = Boolean.TRUE;
|
||||||
IBinaryObject file;
|
IBinaryObject file;
|
||||||
file = getBinaryFile();
|
file = getBinaryFile();
|
||||||
if (file != null) {
|
if ( file != null ) {
|
||||||
return file.isLittleEndian();
|
fIsLittleEndian = new Boolean( file.isLittleEndian() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return fIsLittleEndian.booleanValue();
|
return fIsLittleEndian.booleanValue();
|
||||||
|
|
Loading…
Add table
Reference in a new issue