diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-14 15:31:52 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-14 15:31:52 +0200 |
commit | 1e7bc06555257c73282c7ca1678a74d2cc6c7e6c (patch) | |
tree | 83de5b6633cd5a5aeabf422cb2244eb93481f494 /gcc/ada/adaint.c | |
parent | 5644b7e8e7fcc55fe544949c58ce049039e671c9 (diff) | |
download | gcc-1e7bc06555257c73282c7ca1678a74d2cc6c7e6c.zip gcc-1e7bc06555257c73282c7ca1678a74d2cc6c7e6c.tar.gz gcc-1e7bc06555257c73282c7ca1678a74d2cc6c7e6c.tar.bz2 |
[multiple changes]
2013-10-14 Robert Dewar <dewar@adacore.com>
* exp_prag.adb: Minor reformatting.
2013-10-14 Ed Schonberg <schonberg@adacore.com>
* sem_case.adb (Check_Against_Predicate): Handle properly an
others clause in various cases.
2013-10-14 Hristian Kirtchev <kirtchev@adacore.com>
* sem_prag.adb (Check_Matching_Constituent): Do
not inspect the hidden states if there are no hidden states. This
case arises when the constituents are states coming from a
private child.
2013-10-14 Doug Rupp <rupp@adacore.com>
* init.c [ARMEL and VxWorks] (__gnat_map_signal): Re-arm guard
page by clearing VALID bit vice setting page protection.
2013-10-14 Arnaud Charlet <charlet@adacore.com>
* gnat_rm.texi, adaint.c: Fix typo.
2013-10-14 Ed Schonberg <schonberg@adacore.com>
* sem_util.adb (Is_Variable, In_Protected_Function): In the
body of a protected function, the protected object itself is a
constant (not just its components).
From-SVN: r203550
Diffstat (limited to 'gcc/ada/adaint.c')
-rw-r--r-- | gcc/ada/adaint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/adaint.c b/gcc/ada/adaint.c index e5a50a8..e447907 100644 --- a/gcc/ada/adaint.c +++ b/gcc/ada/adaint.c @@ -3982,7 +3982,7 @@ __gnat_get_executable_load_address (void) status = loadquery (L_GETINFO, buf, blen); if (status == 0) { - struct ldinfo *info = (struct ld_info *)buf; + struct ld_info *info = (struct ld_info *)buf; return info->ldinfo_textorg; } blen = blen * 2; |