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
be8d9ace
Commit
be8d9ace
authored
Jun 13, 2000
by
Richard Henderson
Committed by
Richard Henderson
Jun 13, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* explow.c (set_mem_attributes): Do nothing for NULL type.
From-SVN: r34523
parent
f8bc3f3a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/ChangeLog
+4
-0
gcc/explow.c
+9
-1
No files found.
gcc/ChangeLog
View file @
be8d9ace
2000-06-13 Richard Henderson <rth@cygnus.com>
* explow.c (set_mem_attributes): Do nothing for NULL type.
Tue Jun 13 14:45:10 2000 Jeffrey A Law (law@cygnus.com)
* config/m68k/openbsd.h (ASM_SPEC): pass down options to assembler
...
...
gcc/explow.c
View file @
be8d9ace
...
...
@@ -659,7 +659,15 @@ set_mem_attributes (ref, t, objectp)
tree
t
;
int
objectp
;
{
tree
type
=
TYPE_P
(
t
)
?
t
:
TREE_TYPE
(
t
);
tree
type
;
/* It can happen that type_for_mode was given a mode for which there
is no language-level type. In which case it returns NULL, which
we can see here. */
if
(
t
==
NULL_TREE
)
return
;
type
=
TYPE_P
(
t
)
?
t
:
TREE_TYPE
(
t
);
/* Get the alias set from the expression or type (perhaps using a
front-end routine) and then copy bits from the type. */
...
...
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