Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
c42e1b17
Commit
c42e1b17
authored
May 22, 2015
by
Arnaud Charlet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor reformatting.
From-SVN: r223570
parent
e6b3f5ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
gcc/ada/sem_ch4.adb
+9
-9
gcc/ada/sem_ch8.adb
+1
-1
No files found.
gcc/ada/sem_ch4.adb
View file @
c42e1b17
...
...
@@ -3865,13 +3865,13 @@ package body Sem_Ch4 is
begin
Analyze
(
P
);
--
An
interesting
error
check
,
if
we
take
the
'Ref
erence of an object
--
for which a pragma Atomic or Volatile has been given, and the typ
e
-- o
f the object is not Atomic or Volatile, then we are in trouble. The
--
problem is that no trace of the atomic/volatile status will remain
--
for the backend to respect when it deals with the resulting pointer,
--
since the pointer type will not be marked atomic (it is a pointer to
--
the
base type of the object).
--
An
interesting
error
check
,
if
we
take
the
'Ref
of an object for
--
which a pragma Atomic or Volatile has been given, and the type of th
e
-- o
bject is not Atomic or Volatile, then we are in trouble. The problem
--
is that no trace of the atomic/volatile status will remain for the
--
backend to respect when it deals with the resulting pointer, since
--
the pointer type will not be marked atomic (it is a pointer to the
-- base type of the object).
-- It is not clear if that can ever occur, but in case it does, we will
-- generate an error message. Not clear if this message can ever be
...
...
@@ -3889,10 +3889,10 @@ package body Sem_Ch4 is
T
:=
Etype
(
P
);
if
(
Has_Atomic_Components
(
E
)
and
then
not
Has_Atomic_Components
(
T
))
and
then
not
Has_Atomic_Components
(
T
))
or
else
(
Has_Volatile_Components
(
E
)
and
then
not
Has_Volatile_Components
(
T
))
and
then
not
Has_Volatile_Components
(
T
))
or
else
(
Is_Atomic
(
E
)
and
then
not
Is_Atomic
(
T
))
or
else
(
Is_Volatile
(
E
)
and
then
not
Is_Volatile
(
T
))
then
...
...
gcc/ada/sem_ch8.adb
View file @
c42e1b17
...
...
@@ -1330,7 +1330,7 @@ package body Sem_Ch8 is
then
null
;
--
Allow
internally
generated
x
'Ref
erence expression
--
Allow
internally
generated
x
'Ref
resulting in N_Reference node
elsif Nkind (Nam) = N_Reference then
null;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment