diff options
Diffstat (limited to 'compiler/ia64/cpuinfo.pas')
-rw-r--r-- | compiler/ia64/cpuinfo.pas | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/compiler/ia64/cpuinfo.pas b/compiler/ia64/cpuinfo.pas index 1d9232c830..5d0a8d0c1b 100644 --- a/compiler/ia64/cpuinfo.pas +++ b/compiler/ia64/cpuinfo.pas @@ -30,6 +30,9 @@ uses Type bestreal = extended; +{$if FPC_FULLVERSION>20700} + bestrealrec = TExtended80Rec; +{$endif FPC_FULLVERSION>20700} ts32real = single; ts64real = double; ts80real = extended; @@ -49,7 +52,25 @@ Type fpu_itanium ); -const + tcontrollertype = + (ct_none + ); + + +Const + { Is there support for dealing with multiple microcontrollers available } + { for this platform? } + ControllerSupport = false; + + { We know that there are fields after sramsize + but we don't care about this warning } + {$PUSH} + {$WARN 3177 OFF} + embedded_controllers : array [tcontrollertype] of tcontrollerdatatype = + ( + (controllertypestr:''; controllerunitstr:''; flashbase:0; flashsize:0; srambase:0; sramsize:0)); + {$POP} + { calling conventions supported by the code generator } supported_calling_conventions : tproccalloptions = [ pocall_internproc, |