OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [c6/] [c65003b.ada] - Blame information for rev 816

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 149 jeremybenn
-- C65003B.ADA
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.
15
--
16
--                                    DISCLAIMER
17
--
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
--*
25
-- CHECK THAT IF NO RETURN STATEMENT IS EXECUTED, A FUNCTION RAISES
26
-- PROGRAM_ERROR.  DETERMINE WHERE THE EXCEPTION IS RAISED.
27
 
28
-- THIS LACK OF AN EXECUTABLE RETURN IS NOT DETECTABLE AT COMPILE TIME.
29
 
30
-- JBG 10/14/83
31
-- SPS 2/22/84
32
 
33
WITH REPORT; USE REPORT;
34
PROCEDURE C65003B IS
35
 
36
     EXCEPTION_RAISED : BOOLEAN := FALSE;
37
 
38
     FUNCTION RETURN_IN_EXCEPTION RETURN INTEGER IS
39
     BEGIN
40
          WHILE NOT EQUAL (1, 1) LOOP
41
               RETURN 5;
42
          END LOOP;
43
     EXCEPTION
44
          WHEN PROGRAM_ERROR =>
45
               COMMENT ("PROGRAM_ERROR RAISED IN FUNCTION BODY");
46
               EXCEPTION_RAISED := TRUE;
47
               RETURN 5;
48
     END RETURN_IN_EXCEPTION;
49
 
50
BEGIN
51
 
52
     TEST ("C65003B", "CHECK THAT PROGRAM_ERROR IS RAISED IF A " &
53
                      "FUNCTION RETURNS WITHOUT EXECUTING A RETURN " &
54
                      "STATEMENT");
55
 
56
     BEGIN
57
 
58
          IF RETURN_IN_EXCEPTION = RETURN_IN_EXCEPTION THEN
59
               IF NOT EXCEPTION_RAISED THEN
60
                    FAILED ("PROGRAM_ERROR NOT RAISED");
61
               END IF;
62
          END IF;
63
 
64
     EXCEPTION
65
 
66
          WHEN PROGRAM_ERROR =>
67
               COMMENT ("PROGRAM_ERROR RAISED AT POINT OF CALL");
68
 
69
     END;
70
 
71
     RESULT;
72
 
73
END C65003B;

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.