Commit b5059fa0 by Vincent Pucci Committed by Arnaud Charlet

sem_ch9.adb (Allows_Lock_Free_Implementation): Restrict implicit dereferences of access values.

2012-07-30  Vincent Pucci  <pucci@adacore.com>

	* sem_ch9.adb (Allows_Lock_Free_Implementation): Restrict implicit
	dereferences of access values.

From-SVN: r189975
parent 5aea1e76
2012-07-30 Vincent Pucci <pucci@adacore.com>
* sem_ch9.adb (Allows_Lock_Free_Implementation): Restrict implicit
dereferences of access values.
2012-07-27 Iain Sandoe <iain@codesourcery.com>
* system-darwin-ppc64.ads: Add Support_Atomic_Primitives, set to True.
......
......@@ -411,12 +411,15 @@ package body Sem_Ch9 is
return Abandon;
-- Explicit dereferences restricted (i.e. dereferences of
-- access values).
-- Dereferences of access values restricted
elsif Kind = N_Explicit_Dereference then
elsif Kind = N_Explicit_Dereference
or else (Kind = N_Selected_Component
and then Is_Access_Type (Etype (Prefix (N))))
then
if Lock_Free_Given then
Error_Msg_N ("explicit dereference not allowed", N);
Error_Msg_N ("dereference of access value " &
"not allowed", N);
return Skip;
end if;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment