2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / ada / acats / tests / ca / ca11d011.a
blob014f74be78ab1f90f94d14f1908f14b3e5eaeb8d
1 -- CA11D011.A
2 --
3 -- Grant of Unlimited Rights
4 --
5 -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
6 -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
7 -- unlimited rights in the software and documentation contained herein.
8 -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
9 -- this public release, the Government intends to confer upon all
10 -- recipients unlimited rights equal to those held by the Government.
11 -- These rights include rights to use, duplicate, release or disclose the
12 -- released technical data and computer software in whole or in part, in
13 -- any manner and for any purpose whatsoever, and to have or permit others
14 -- to do so.
16 -- DISCLAIMER
18 -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
19 -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
20 -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
21 -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
22 -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
23 -- PARTICULAR PURPOSE OF SAID MATERIAL.
24 --*
26 -- OBJECTIVE:
27 -- See CA11D013.AM
29 -- TEST DESCRIPTION:
30 -- See CA11D013.AM
32 -- TEST FILES:
33 -- The following files comprise this test:
35 -- FA11D00.A
36 -- CA11D010.A
37 -- => CA11D011.A
38 -- CA11D012.A
39 -- CA11D013.AM
41 -- CHANGE HISTORY:
42 -- 06 Dec 94 SAIC ACVC 2.0
43 -- 21 Dec 94 SAIC Declared child procedure specification
44 -- 26 Apr 96 SAIC ACVC 2.1: Modified prologue.
46 --!
48 with Report;
51 -- Child procedure of FA11D00.
53 procedure FA11D00.CA11D011 (Left, Right : in Complex_Type;
54 C : out Complex_Type);
56 --=======================================================================--
58 procedure FA11D00.CA11D011 (Left, Right : in Complex_Type;
59 C : out Complex_Type) is
60 -- Multiply_Complex.
62 begin
63 -- Zero is declared in parent package.
65 if Left.Real < Zero.Real or Right.Imag < Zero.Imag then
66 raise Multiply_Error; -- Reference to exception in parent package.
67 Report.Failed ("Program control not transferred by raise in " &
68 "child procedure FA11D00.CA11D011");
69 else
70 C.Real := (Left.Real * Right.Real);
71 C.Imag := (Left.Imag * Right.Imag);
72 end if;
74 exception
75 when others =>
76 TC_Handled_In_Child_Sub := true;
77 C := Check_Value; -- Reference to object in parent package.
79 end FA11D00.CA11D011; -- Multiply_Complex