summaryrefslogtreecommitdiff
path: root/gcc/ada/i-forlap.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/i-forlap.ads')
-rw-r--r--gcc/ada/i-forlap.ads28
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/ada/i-forlap.ads b/gcc/ada/i-forlap.ads
index 9faacceef70..3e8f2be07c3 100644
--- a/gcc/ada/i-forlap.ads
+++ b/gcc/ada/i-forlap.ads
@@ -293,7 +293,7 @@ package Interfaces.Fortran.LAPACK is
N : Natural;
A : in out Real_Matrix;
Ld_A : Positive;
- Tau : in Real_Vector;
+ Tau : Real_Vector;
Work : out Real_Vector;
L_Work : Integer;
Info : access Integer);
@@ -303,7 +303,7 @@ package Interfaces.Fortran.LAPACK is
N : Natural;
A : in out Double_Precision_Matrix;
Ld_A : Positive;
- Tau : in Double_Precision_Vector;
+ Tau : Double_Precision_Vector;
Work : out Double_Precision_Vector;
L_Work : Integer;
Info : access Integer);
@@ -311,12 +311,12 @@ package Interfaces.Fortran.LAPACK is
procedure sstebz
(Rng : access constant Character;
Order : access constant Character;
- N : in Natural;
- Vl, Vu : in Real := 0.0;
- Il, Iu : in Integer := 1;
- Abs_Tol : in Real := 0.0;
- D : in Real_Vector;
- E : in Real_Vector;
+ N : Natural;
+ Vl, Vu : Real := 0.0;
+ Il, Iu : Integer := 1;
+ Abs_Tol : Real := 0.0;
+ D : Real_Vector;
+ E : Real_Vector;
M : out Natural;
N_Split : out Natural;
W : out Real_Vector;
@@ -329,12 +329,12 @@ package Interfaces.Fortran.LAPACK is
procedure dstebz
(Rng : access constant Character;
Order : access constant Character;
- N : in Natural;
- Vl, Vu : in Double_Precision := 0.0;
- Il, Iu : in Integer := 1;
- Abs_Tol : in Double_Precision := 0.0;
- D : in Double_Precision_Vector;
- E : in Double_Precision_Vector;
+ N : Natural;
+ Vl, Vu : Double_Precision := 0.0;
+ Il, Iu : Integer := 1;
+ Abs_Tol : Double_Precision := 0.0;
+ D : Double_Precision_Vector;
+ E : Double_Precision_Vector;
M : out Natural;
N_Split : out Natural;
W : out Double_Precision_Vector;