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
b61148dd
Commit
b61148dd
authored
Aug 20, 1999
by
Mark Mitchell
Committed by
Mark Mitchell
Aug 20, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-common.c (c_get_alias_set): Update comment.
From-SVN: r28780
parent
f2655b99
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
5 deletions
+22
-5
gcc/ChangeLog
+4
-0
gcc/c-common.c
+18
-5
No files found.
gcc/ChangeLog
View file @
b61148dd
Fri
Aug
20
15
:
02
:
10
1999
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
c
-
common
.
c
(
c_get_alias_set
)
:
Update
comment
.
1999
-
08
-
20
Andreas
Jaeger
<
aj
@arthur
.
rhein
-
neckar
.
de
>
*
linux
.
h
(
LIB_SPEC
)
:
Added
.
...
...
gcc/c-common.c
View file @
b61148dd
...
...
@@ -3411,11 +3411,24 @@ c_get_alias_set (t)
`I *' are different types. So, we have to pick a canonical
representative. We do this below.
Note that this approach is actually more conservative that it
needs to be. In particular, `const int *' and `int *' should
be in different alias sets, but this approach puts them in
the same alias set. */
Technically, this approach is actually more conservative that
it needs to be. In particular, `const int *' and `int *'
chould be in different alias sets, according to the C and C++
standard, since their types are not the same, and so,
technically, an `int **' and `const int **' cannot point at
the same thing.
But, the standard is wrong. In particular, this code is
legal C++:
int *ip;
int **ipp = &ip;
const int* const* cipp = &ip;
And, it doesn't make sense for that to be legal unless you
can dereference IPP and CIPP. So, we ignore cv-qualifiers on
the pointed-to types. This issue has been reported to the
C++ committee. */
t
=
TYPE_MAIN_VARIANT
(
TREE_TYPE
(
type
));
t
=
((
TREE_CODE
(
type
)
==
POINTER_TYPE
)
?
build_pointer_type
(
t
)
:
build_reference_type
(
t
));
...
...
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