summaryrefslogtreecommitdiff
path: root/compiler/ngtcon.pas
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/ngtcon.pas')
-rw-r--r--compiler/ngtcon.pas6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/ngtcon.pas b/compiler/ngtcon.pas
index b0c964e698..9a83a46699 100644
--- a/compiler/ngtcon.pas
+++ b/compiler/ngtcon.pas
@@ -1042,14 +1042,14 @@ function get_next_varsym(def: tabstractrecorddef; const SymList:TFPHashObjectLis
ftcb.emit_tai(tai_const.create_8bit(setval),def);
2:
begin
- if source_info.endian<>target_info.endian then
+ if target_info.endian=endian_big then
setval:=swap(word(setval));
ftcb.emit_tai(tai_const.create_16bit(setval),def);
end;
4:
begin
- if source_info.endian<>target_info.endian then
- setval:=swap(setval);
+ if target_info.endian=endian_big then
+ setval:=swap(word(setval)) shl 16 or (swap(word(setval shr 16)));
ftcb.emit_tai(tai_const.create_32bit(setval),def);
end;
else