소스 검색

Merged revisions 10793 via svnmerge from
http://svn.freepascal.org/svn/fpc/trunk

........
r10793 | yury | 2008-04-25 23:14:56 +0300 (Пт, 25 апр 2008) | 1 line

* Fixed overload choosing by arm native compiler.
........

git-svn-id: branches/fixes_2_2@10794 -

yury 17 년 전
부모
커밋
6f480b9570
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      compiler/cutils.pas

+ 2 - 2
compiler/cutils.pas

@@ -1246,13 +1246,13 @@ implementation
     // and with all signaling policies preserved as is.
 
     type
-      {$ifdef ENDIAN_LITTLE}
+      {$if defined(ENDIAN_LITTLE) and not defined(FPC_DOUBLE_HILO_SWAPPED)}
         twoword=record
                   lo,hi:longword; // Little Endian split of a double.
                 end;
       {$else}
         twoword=record
-                  hi,lo:longword; // Little Endian split of a double.
+                  hi,lo:longword; // Big Endian split of a double.
                 end;
       {$endif}