mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-15 22:32:35 +00:00
move ada tests
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35629 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e996748ea0
commit
e10988ddbd
6
test/FrontendAda/array_constructor.adb
Normal file
6
test/FrontendAda/array_constructor.adb
Normal file
@ -0,0 +1,6 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure Array_Constructor is
|
||||
A : array (Integer range <>) of Boolean := (True, False);
|
||||
begin
|
||||
null;
|
||||
end;
|
7
test/FrontendAda/array_range_ref.adb
Normal file
7
test/FrontendAda/array_range_ref.adb
Normal file
@ -0,0 +1,7 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure Array_Range_Ref is
|
||||
A : String (1 .. 3);
|
||||
B : String := A (A'RANGE)(1 .. 3);
|
||||
begin
|
||||
null;
|
||||
end;
|
11
test/FrontendAda/array_ref.adb
Normal file
11
test/FrontendAda/array_ref.adb
Normal file
@ -0,0 +1,11 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure Array_Ref is
|
||||
type A is array (Natural range <>, Natural range <>) of Boolean;
|
||||
type A_Access is access A;
|
||||
function Get (X : A_Access) return Boolean is
|
||||
begin
|
||||
return X (0, 0);
|
||||
end;
|
||||
begin
|
||||
null;
|
||||
end;
|
10
test/FrontendAda/array_size.adb
Normal file
10
test/FrontendAda/array_size.adb
Normal file
@ -0,0 +1,10 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure Array_Size is
|
||||
subtype S is String (1 .. 2);
|
||||
type R is record
|
||||
A : S;
|
||||
end record;
|
||||
X : R;
|
||||
begin
|
||||
null;
|
||||
end;
|
5
test/FrontendAda/emit_var.ads
Normal file
5
test/FrontendAda/emit_var.ads
Normal file
@ -0,0 +1,5 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
with Ada.Finalization;
|
||||
package Emit_Var is
|
||||
type Search_Type is new Ada.Finalization.Controlled with null record;
|
||||
end;
|
10
test/FrontendAda/fat_fields.adb
Normal file
10
test/FrontendAda/fat_fields.adb
Normal file
@ -0,0 +1,10 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
-- RUN: %llvmgcc -c %s -O2 -o /dev/null
|
||||
package body Fat_Fields is
|
||||
procedure Proc is
|
||||
begin
|
||||
if P = null then
|
||||
null;
|
||||
end if;
|
||||
end;
|
||||
end;
|
6
test/FrontendAda/fat_fields.ads
Normal file
6
test/FrontendAda/fat_fields.ads
Normal file
@ -0,0 +1,6 @@
|
||||
package Fat_Fields is
|
||||
pragma Elaborate_Body;
|
||||
type A is array (Positive range <>) of Boolean;
|
||||
type A_Ptr is access A;
|
||||
P : A_Ptr := null;
|
||||
end;
|
7
test/FrontendAda/non_lvalue.adb
Normal file
7
test/FrontendAda/non_lvalue.adb
Normal file
@ -0,0 +1,7 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
package body Non_LValue is
|
||||
function A (Y : U) return String is
|
||||
begin
|
||||
return Y.X.B;
|
||||
end;
|
||||
end;
|
11
test/FrontendAda/non_lvalue.ads
Normal file
11
test/FrontendAda/non_lvalue.ads
Normal file
@ -0,0 +1,11 @@
|
||||
package Non_LValue is
|
||||
type T (Length : Natural) is record
|
||||
A : String (1 .. Length);
|
||||
B : String (1 .. Length);
|
||||
end record;
|
||||
type T_Ptr is access all T;
|
||||
type U is record
|
||||
X : T_Ptr;
|
||||
end record;
|
||||
function A (Y : U) return String;
|
||||
end;
|
12
test/FrontendAda/switch.adb
Normal file
12
test/FrontendAda/switch.adb
Normal file
@ -0,0 +1,12 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
function Switch (N : Integer) return Integer is
|
||||
begin
|
||||
case N is
|
||||
when Integer'First .. -1 =>
|
||||
return -1;
|
||||
when 0 =>
|
||||
return 0;
|
||||
when others =>
|
||||
return 1;
|
||||
end case;
|
||||
end;
|
7
test/FrontendAda/var_size.adb
Normal file
7
test/FrontendAda/var_size.adb
Normal file
@ -0,0 +1,7 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
package body Var_Size is
|
||||
function A (X : T) return String is
|
||||
begin
|
||||
return X.A;
|
||||
end;
|
||||
end;
|
7
test/FrontendAda/var_size.ads
Normal file
7
test/FrontendAda/var_size.ads
Normal file
@ -0,0 +1,7 @@
|
||||
package Var_Size is
|
||||
type T (Length : Natural) is record
|
||||
A : String (1 .. Length);
|
||||
B : String (1 .. Length);
|
||||
end record;
|
||||
function A (X : T) return String;
|
||||
end;
|
7
test/FrontendAda/vce.adb
Normal file
7
test/FrontendAda/vce.adb
Normal file
@ -0,0 +1,7 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure VCE is
|
||||
S : String (1 .. 2);
|
||||
B : Character := 'B';
|
||||
begin
|
||||
S := 'A' & B;
|
||||
end;
|
9
test/FrontendAda/vce_lv.adb
Normal file
9
test/FrontendAda/vce_lv.adb
Normal file
@ -0,0 +1,9 @@
|
||||
-- RUN: %llvmgcc -c %s -o /dev/null
|
||||
procedure VCE_LV is
|
||||
type P is access String ;
|
||||
type T is new P (5 .. 7);
|
||||
subtype U is String (5 .. 7);
|
||||
X : T := new U'(others => 'A');
|
||||
begin
|
||||
null;
|
||||
end;
|
Loading…
x
Reference in New Issue
Block a user