2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / ada / a-assert.ads
blobbfc2229beda277f5dd4ce9e1d18c544575375774
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT RUN-TIME COMPONENTS --
4 -- --
5 -- A D A . A S S E R T --
6 -- --
7 -- S p e c --
8 -- --
9 -- This specification is derived from the Ada Reference Manual for use with --
10 -- GNAT. In accordance with the copyright of that document, you can freely --
11 -- copy and modify this specification, provided that if you redistribute a --
12 -- modified version, any changes that you have made are clearly indicated. --
13 -- --
14 ------------------------------------------------------------------------------
16 -- We do a with of System.Assertions to get hold of the exception (following
17 -- the specific RM permission that lets' Assertion_Error being a renaming).
18 -- The suppression of Warnings stops the warning about bad categorization.
20 pragma Warnings (Off);
21 with System.Assertions;
22 pragma Warnings (On);
24 package Ada.Assertions is
25 pragma Pure (Assertions);
27 Assertion_Error : exception renames System.Assertions.Assert_Failure;
28 -- This is the renaming that is allowed by 11.4.2(24). Note that the
29 -- Exception_Name will refer to the one in System.Assertions (see
30 -- AARM-11.4.1(12.b)).
32 procedure Assert (Check : Boolean);
34 procedure Assert (Check : Boolean; Message : String);
36 end Ada.Assertions;