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
8930ce20
Commit
8930ce20
authored
Dec 02, 2004
by
Kazu Hirata
Committed by
Kazu Hirata
Dec 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-phinodes.c (remove_phi_arg_num): Fix a comment.
From-SVN: r91608
parent
84dcde01
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/tree-phinodes.c
+4
-4
No files found.
gcc/ChangeLog
View file @
8930ce20
2004
-
12
-
02
Kazu
Hirata
<
kazu
@
cs
.
umass
.
edu
>
*
tree
-
phinodes
.
c
(
remove_phi_arg_num
):
Fix
a
comment
.
2004
-
12
-
02
Alan
Modra
<
amodra
@
bigpond
.
net
.
au
>
PR
target
/
16952
...
...
gcc/tree-phinodes.c
View file @
8930ce20
...
...
@@ -360,10 +360,10 @@ add_phi_arg (tree phi, tree def, edge e)
PHI_ARG_NONZERO
(
phi
,
e
->
dest_idx
)
=
false
;
}
/* Remove the Ith argument from PHI's argument list. This routine
assumes
ordering of alternatives in the vector is not important and implements
removal by swapping the last alternative with the alternative we want to
delete, then shrinking th
e vector. */
/* Remove the Ith argument from PHI's argument list. This routine
implements removal by swapping the last alternative with the
alternative we want to delete and then shrinking the vector, which
is consistent with how we remove an edge from the edg
e vector. */
static
void
remove_phi_arg_num
(
tree
phi
,
int
i
)
...
...
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