1312521Sngie/* $NetBSD$ */
2312521Sngie
3312521Sngie/*
4312521Sngie===============================================================================
5312521Sngie
6312521SngieThis C header file is part of the SoftFloat IEC/IEEE Floating-point
7312521SngieArithmetic Package, Release 2a.
8312521Sngie
9312521SngieWritten by John R. Hauser.  This work was made possible in part by the
10312521SngieInternational Computer Science Institute, located at Suite 600, 1947 Center
11312521SngieStreet, Berkeley, California 94704.  Funding was partially provided by the
12312521SngieNational Science Foundation under grant MIP-9311980.  The original version
13312521Sngieof this code was written as part of a project to build a fixed-point vector
14312521Sngieprocessor in collaboration with the University of California at Berkeley,
15312521Sngieoverseen by Profs. Nelson Morgan and John Wawrzynek.  More information
16312521Sngieis available through the Web page `http://HTTP.CS.Berkeley.EDU/~jhauser/
17312521Sngiearithmetic/SoftFloat.html'.
18312521Sngie
19312521SngieTHIS SOFTWARE IS DISTRIBUTED AS IS, FOR FREE.  Although reasonable effort
20312521Sngiehas been made to avoid it, THIS SOFTWARE MAY CONTAIN FAULTS THAT WILL AT
21312521SngieTIMES RESULT IN INCORRECT BEHAVIOR.  USE OF THIS SOFTWARE IS RESTRICTED TO
22312521SngiePERSONS AND ORGANIZATIONS WHO CAN AND WILL TAKE FULL RESPONSIBILITY FOR ANY
23312521SngieAND ALL LOSSES, COSTS, OR OTHER PROBLEMS ARISING FROM ITS USE.
24312521Sngie
25312521SngieDerivative works are acceptable, even for commercial purposes, so long as
26312521Sngie(1) they include prominent notice that the work is derivative, and (2) they
27312521Sngieinclude prominent notice akin to these four paragraphs for those parts of
28312521Sngiethis code that are retained.
29312521Sngie
30312521Sngie===============================================================================
31312521Sngie*/
32312521Sngie
33312521Sngie/*
34312521Sngie-------------------------------------------------------------------------------
35312521SngieInclude common integer types and flags.
36312521Sngie-------------------------------------------------------------------------------
37312521Sngie*/
38312521Sngie#include "aarch64-gcc.h"
39312521Sngie
40312521Sngie/*
41312521Sngie-------------------------------------------------------------------------------
42312521SngieSymbolic Boolean literals.
43312521Sngie-------------------------------------------------------------------------------
44312521Sngie*/
45312521Sngieenum {
46312521Sngie    FALSE = 0,
47312521Sngie    TRUE  = 1
48312521Sngie};
49312521Sngie