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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [ada/] [acats/] [tests/] [c5/] [c55c02b.ada] - Blame information for rev 720

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 720 jeremybenn
-- C55C02B.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 THE WHILE CONDITION IS EVALUATED EACH TIME.
26
 
27
-- DAT 1/29/81
28
-- SPS 3/2/83
29
 
30
WITH REPORT;
31
PROCEDURE C55C02B IS
32
 
33
     USE REPORT;
34
 
35
     I : INTEGER := 0;
36
 
37
     FT : ARRAY (FALSE .. TRUE) OF BOOLEAN
38
          := (IDENT_BOOL (FALSE), IDENT_BOOL (TRUE));
39
 
40
BEGIN
41
     TEST ("C55C02B", "WHILE CONDITION IS EVALUATED EACH TIME THROUGH");
42
 
43
     WHILE I /= 10 LOOP
44
          I := I + 1;
45
     END LOOP;
46
     IF I /= 10 THEN
47
          FAILED ("BAD LOOP FLOW - OPTIMIZABLE CONDITION");
48
     END IF;
49
 
50
     I := 10;
51
     WHILE FT (IDENT_BOOL (I /= 14)) LOOP
52
          I := I + 1;
53
     END LOOP;
54
     IF I /= 14 THEN
55
          FAILED ("BAD LOOP FLOW - DYNAMIC CONDITION");
56
     END IF;
57
 
58
     RESULT;
59
END C55C02B;

powered by: WebSVN 2.1.0

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