diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 11:24:55 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-29 11:24:55 +0200 |
commit | c5ecd6b73c89668590555d62b39f954618c27978 (patch) | |
tree | 0dc6223602cbfdf17b2870ef8eafd07923b38da1 /gcc/ada/get_targ.ads | |
parent | e7898e54f4dc9563328204d6e8b886982c9c3357 (diff) | |
download | gcc-c5ecd6b73c89668590555d62b39f954618c27978.tar.gz |
[multiple changes]
2011-08-29 Thomas Quinot <quinot@adacore.com>
* rtsfind.ads, exp_ch3.adb (In_Runtime): Minor code improvement, use
Is_RTU instead of using Chars comparisons.
2011-08-29 Thomas Quinot <quinot@adacore.com>
* exp_strm.adb (Build_Mutable_Record_Read_Procedure): Do not create a
temporary object if the actual is constrained, and the discriminants
read from the stream don't match.
2011-08-29 Tristan Gingold <gingold@adacore.com>
* sem_attr.adb, exp_attr.adb: Add handling of
Attribute_System_Allocator_Alignment
* snames.ads-tmpl: Add Name_System_Allocator_Alignment and
Attribute_System_Allocator_Alignment.
* ttypes.ads, get_targ.ads: Add Get_System_Allocator_Alignment.
* gcc-interface/targtyps.c, gcc-interface/utils2.c,
gcc-interface/gigi.h: Renames get_target_default_allocator_alignment to
get_target_system_allocator_alignment.
2011-08-29 Arnaud Charlet <charlet@adacore.com>
* gcc-interface/Makefile.in, gcc-interface/Make-lang.in: Update
dependencies.
From-SVN: r178176
Diffstat (limited to 'gcc/ada/get_targ.ads')
-rw-r--r-- | gcc/ada/get_targ.ads | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/get_targ.ads b/gcc/ada/get_targ.ads index 07a9ab2db6f..6cdbf7509a4 100644 --- a/gcc/ada/get_targ.ads +++ b/gcc/ada/get_targ.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2011, 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- -- @@ -95,6 +95,10 @@ package Get_Targ is function Get_Strict_Alignment return Nat; pragma Import (C, Get_Strict_Alignment, "get_target_strict_alignment"); + function Get_System_Allocator_Alignment return Nat; + pragma Import (C, Get_System_Allocator_Alignment, + "get_target_system_allocator_alignment"); + function Get_Double_Float_Alignment return Nat; pragma Import (C, Get_Double_Float_Alignment, "get_target_double_float_alignment"); |