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
604bb87d
Commit
604bb87d
authored
Jan 05, 2001
by
Daniel Berlin
Committed by
Daniel Berlin
Jan 05, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VECTOR_TYPE fixes for aliasing, and dwarf2 output.
From-SVN: r38715
parent
220bce48
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+7
-0
gcc/c-common.c
+5
-1
gcc/dwarf2out.c
+1
-0
No files found.
gcc/ChangeLog
View file @
604bb87d
2001-01-05 Daniel Berlin <dberlin@redhat.com>
* c-common.c (lang_get_alias_set): Say we know nothing of
VECTOR_TYPE aliasing.
* dwarf2out.c (is_base_type): Handle VECTOR_TYPE properly.
2001-01-05 Bruce Korb <bkorb@gnu.org>
* fixinc/mkfixinc.sh(vax-*-bsd): convert exit and atexit calls to
...
...
gcc/c-common.c
View file @
604bb87d
...
...
@@ -5037,7 +5037,11 @@ lang_get_alias_set (t)
tree
t
;
{
tree
u
;
/* We know nothing about vector types */
if
(
TREE_CODE
(
t
)
==
VECTOR_TYPE
)
return
0
;
/* Permit type-punning when accessing a union, provided the access
is directly through the union. For example, this code does not
permit taking the address of a union member and then storing
...
...
gcc/dwarf2out.c
View file @
604bb87d
...
...
@@ -7341,6 +7341,7 @@ is_base_type (type)
case
FILE_TYPE
:
case
OFFSET_TYPE
:
case
LANG_TYPE
:
case
VECTOR_TYPE
:
return
0
;
default
:
...
...
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