diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-08-04 15:02:44 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-08-04 15:02:44 +0200 |
commit | 24d4b3d500200caae61f77924b4ebe1bd2b5e0be (patch) | |
tree | cb6541747ff86af28069e975fb55ae8015015976 /gcc/ada/tracebak.c | |
parent | 69fff50e08365770deca864efd7a904ac9eb25e0 (diff) | |
download | gcc-24d4b3d500200caae61f77924b4ebe1bd2b5e0be.zip gcc-24d4b3d500200caae61f77924b4ebe1bd2b5e0be.tar.gz gcc-24d4b3d500200caae61f77924b4ebe1bd2b5e0be.tar.bz2 |
[multiple changes]
2014-08-04 Yannick Moy <moy@adacore.com>
* sem_ch3.adb (Analyze_Object_Declaration): In GNATprove mode,
do not generate two Itypes with the same name for an array
definition.
* sinfo.ads: Expand doc on GNATprove mode.
2014-08-04 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch3.adb (Expand_Freeze_Record_Type): Set the finalization
master and storage pool attributes on the root type of an
anonymous access type.
* exp_ch4.adb (Expand_N_Allocator): Set the finalization master
and storage pool attributes on the root type of an anonymous
access type.
2014-08-04 Arnaud Charlet <charlet@adacore.com>
* exp_ch3.adb: Minor reformatting.
* tb-alvms.c, tb-alvxw.c, tb-ivms.c: Removed.
* tracebak.c: Remove use of above files.
* gcc-interface/Makefile.in: Update dependencies.
2014-08-04 Pierre-Marie Derodat <derodat@adacore.com>
* gcc-interface/utils.c (gnat_set_type_context): Also set the
context for parallel types' TYPE_STUB_DECL. Do not change
anything if the context is already set for them.
(gnat_pushdecl): Update the comment for calls to
gnat_set_type_context to mention parallel types.
(add_parallel_type): When adding a context-less parallel type to
a type that has a context, propagate the context from the latter
type to the former.
(process_deferred_decl_context): Call gnat_set_type_context
rather than manually setting the type context.
(build_unc_object_type): Call gnat_set_type_context on the
template type.
From-SVN: r213584
Diffstat (limited to 'gcc/ada/tracebak.c')
-rw-r--r-- | gcc/ada/tracebak.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/gcc/ada/tracebak.c b/gcc/ada/tracebak.c index 4efb75e..54ec90f 100644 --- a/gcc/ada/tracebak.c +++ b/gcc/ada/tracebak.c @@ -6,7 +6,7 @@ * * * C Implementation File * * * - * Copyright (C) 2000-2012, Free Software Foundation, Inc. * + * Copyright (C) 2000-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- * @@ -95,19 +95,7 @@ extern void (*Unlock_Task) (void); *-- Target specific implementations --* *-------------------------------------*/ -#if defined (__alpha_vxworks) - -#include "tb-alvxw.c" - -#elif defined (__ALPHA) && defined (__VMS__) - -#include "tb-alvms.c" - -#elif defined (__ia64__) && defined (__VMS__) - -#include "tb-ivms.c" - -#elif defined (_WIN64) && defined (__SEH__) +#if defined (_WIN64) && defined (__SEH__) #include <windows.h> |