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
5c3b86af
Commit
5c3b86af
authored
Jul 13, 2005
by
Daniel Berlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missed part of commit
From-SVN: r101969
parent
20c86158
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
gcc/tree-ssa-structalias.c
+2
-3
No files found.
gcc/tree-ssa-structalias.c
View file @
5c3b86af
...
...
@@ -1294,15 +1294,14 @@ type_safe (unsigned int n, unsigned HOST_WIDE_INT *offset)
/* For things we've globbed to single variables, any offset into the
variable acts like the entire variable, so that it becomes offset
0. */
if
(
n
==
anything_id
if
(
n
info
->
is_special_var
||
ninfo
->
is_artificial_var
||
ninfo
->
is_unknown_size_var
)
{
*
offset
=
0
;
return
true
;
}
return
n
>
anything_id
&&
(
get_varinfo
(
n
)
->
offset
+
*
offset
)
<
get_varinfo
(
n
)
->
fullsize
;
return
(
get_varinfo
(
n
)
->
offset
+
*
offset
)
<
get_varinfo
(
n
)
->
fullsize
;
}
/* Process a constraint C that represents *x = &y. */
...
...
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