The Ada 95 Reference Manual defines a set of pragmas that can be used to supply additional information to the compiler. These language-defined pragmas are implemented in ERC32 Ada and work as defined.
In addition, the Ada 95 Reference Manual allows implementations to define extra pragmas whose meaning is defined by the implementation. ERC32 Ada provides a number of these implementation-dependent pragmas, which can be used to extend and enhance the functionality of the compiler. This Chapter describes these additional pragmas.
pragma Ada_83;
A configuration pragma that establishes Ada 83 mode for the unit to which it applies, regardless of the mode set by the command line switches. In Ada 83 mode, ERC32 Ada attempts to be as compatible with the syntax and semantics of Ada 83, as defined in the original Ada 83 Reference Manual as possible. In particular, the new Ada 95 keywords are not recognized, optional package bodies are allowed, and generics may name types with unknown discriminants without using the (<>) notation. In addition, some but not all of the additional restrictions of Ada 83 are enforced.
Ada 83 mode is intended for two purposes. Firstly, it allows existing legacy Ada 83 code to be compiled and adapted to ERC32 Ada with less effort. Secondly, it aids in keeping code backwards compatible with Ada 83. However, there is no guarantee that code that is processed correctly by ERC32 Ada in Ada 83 mode will in fact compile and execute with an Ada 83 compiler, since ERC32 Ada does not enforce all the additional checks required by Ada 83.