diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-11-20 12:34:09 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-11-20 12:34:09 +0100 |
commit | eefd2467a6ba6c24abff9af8292791c2f8b0a201 (patch) | |
tree | ac3d62b564971839fe093eecd087fc41b29f0529 /gcc/ada/uintp.h | |
parent | 697b781a68a969edaf76da0275c2decb8626a891 (diff) | |
download | gcc-eefd2467a6ba6c24abff9af8292791c2f8b0a201.zip gcc-eefd2467a6ba6c24abff9af8292791c2f8b0a201.tar.gz gcc-eefd2467a6ba6c24abff9af8292791c2f8b0a201.tar.bz2 |
[multiple changes]
2014-11-20 Robert Dewar <dewar@adacore.com>
* inline.adb, sem_util.adb: Minor reformatting.
2014-11-20 Pierre-Marie Derodat <derodat@adacore.com>
* uintp.h (UI_Eq): Declare.
* urealp.h (Norm_Den): Declare.
(Norm_Num): Declare.
* exp_dbug.adb (Is_Handled_Scale_Factor): New.
(Get_Encoded_Name): Do not output ___XF GNAT encodings
for fixed-point types when these can be handled by GCC's DWARF
back-end.
2014-11-20 Thomas Quinot <quinot@adacore.com>
* sem_ch13.db (Inherit_Aspects_At_Freeze_Point): Inherit parent
SSO even if set through a pragma Default_Scalar_Storage_Order.
* freeze.adb (Set_SSO_From_Default): For a type extension,
do not let the default SSO override the parent SSO.
* gnat_rm.texi: document the above
From-SVN: r217842
Diffstat (limited to 'gcc/ada/uintp.h')
-rw-r--r-- | gcc/ada/uintp.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/uintp.h b/gcc/ada/uintp.h index b950a88..1f4e7a3 100644 --- a/gcc/ada/uintp.h +++ b/gcc/ada/uintp.h @@ -6,7 +6,7 @@ * * * C Header File * * * - * Copyright (C) 1992-2011, Free Software Foundation, Inc. * + * Copyright (C) 1992-2014, Free Software Foundation, Inc. * * * * GNAT is free software; you can redistribute it and/or modify it under * * terms of the GNU General Public License as published by the Free Soft- * @@ -79,6 +79,10 @@ typedef struct {const int *Array; Vector_Template *Bounds; } #define Vector_To_Uint uintp__vector_to_uint extern Uint Vector_To_Uint (Int_Vector, Boolean); +/* Compare integer values for equality. */ +#define UI_Eq uintp__ui_eq +extern Boolean UI_Eq (Uint, Uint); + /* Compare integer values for less than. */ #define UI_Lt uintp__ui_lt extern Boolean UI_Lt (Uint, Uint); |