diff options
author | Matt Gingell <gingell@adacore.com> | 2007-04-06 11:15:45 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-04-06 11:15:45 +0200 |
commit | 2d7475246d0e0e573138fd47bd31a091df0dc4ae (patch) | |
tree | b5f6c03c92ec27ce60bdeda1b0fd06102cb07534 /gcc/ada/system-aix.ads | |
parent | c99c095f991024052fcf8d32d230ce448edc2d81 (diff) | |
download | gcc-2d7475246d0e0e573138fd47bd31a091df0dc4ae.tar.gz |
system-aix.ads: Back out previous change.
2007-04-06 Matt Gingell <gingell@adacore.com>
* system-aix.ads: Back out previous change.
(Functions_Return_By_DSP): Removed
From-SVN: r123545
Diffstat (limited to 'gcc/ada/system-aix.ads')
-rw-r--r-- | gcc/ada/system-aix.ads | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gcc/ada/system-aix.ads b/gcc/ada/system-aix.ads index ba90858e77f..fcc99fd711c 100644 --- a/gcc/ada/system-aix.ads +++ b/gcc/ada/system-aix.ads @@ -92,14 +92,14 @@ package System is -- Priority-related Declarations (RM D.1) - Max_Priority : constant Positive := 125; - Max_Interrupt_Priority : constant Positive := 126; + Max_Priority : constant Positive := 30; + Max_Interrupt_Priority : constant Positive := 31; - subtype Any_Priority is Integer range 0 .. 126; - subtype Priority is Any_Priority range 0 .. 125; - subtype Interrupt_Priority is Any_Priority range 126 .. 126; + subtype Any_Priority is Integer range 0 .. 31; + subtype Priority is Any_Priority range 0 .. 30; + subtype Interrupt_Priority is Any_Priority range 31 .. 31; - Default_Priority : constant Priority := 62; + Default_Priority : constant Priority := 15; private @@ -127,7 +127,6 @@ private Exit_Status_Supported : constant Boolean := True; Fractional_Fixed_Ops : constant Boolean := False; Frontend_Layout : constant Boolean := False; - Functions_Return_By_DSP : constant Boolean := False; Machine_Overflows : constant Boolean := False; Machine_Rounds : constant Boolean := True; OpenVMS : constant Boolean := False; |