2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2025-04-24 17:41:42 +08:00

decl.c (gnat_to_gnu_entity): Do not short-circuit the regular handling.

* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Abstract_State>: Do not
	short-circuit the regular handling.

From-SVN: r221446
This commit is contained in:
Eric Botcazou 2015-03-16 09:18:38 +00:00 committed by Eric Botcazou
parent e1be83cac8
commit c8dbf886e9
2 changed files with 9 additions and 2 deletions
gcc/ada
ChangeLog
gcc-interface

@ -1,3 +1,8 @@
2015-03-16 Eric Botcazou <ebotcazou@adacore.com>
* gcc-interface/decl.c (gnat_to_gnu_entity) <E_Abstract_State>: Do not
short-circuit the regular handling.
2015-03-13 Robert Dewar <dewar@adacore.com>
* exp_unst.adb (Note_Uplevel_Reference): Eliminate duplicate

@ -4800,9 +4800,11 @@ gnat_to_gnu_entity (Entity_Id gnat_entity, tree gnu_expr, int definition)
case E_Abstract_State:
/* This is a SPARK annotation that only reaches here when compiling in
ASIS mode and has no characteristics to annotate. */
ASIS mode. */
gcc_assert (type_annotate_only);
return error_mark_node;
gnu_decl = error_mark_node;
saved = true;
break;
default:
gcc_unreachable ();