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
e0df53dd
Commit
e0df53dd
authored
Aug 21, 2013
by
Martin Liska
Committed by
Jan Hubicka
Aug 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ipa.c (ipa_profile_read_summary): Fix buffer overflow.
From-SVN: r201900
parent
e7d1d3eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+4
-0
gcc/ipa.c
+2
-1
No files found.
gcc/ChangeLog
View file @
e0df53dd
2013-08-20 Martin Liska <marxin.liska@gmail.com>
* ipa.c (ipa_profile_read_summary): Fix buffer overflow.
2013-08-21 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* config/sol2-10.h (TARGET_LIBC_HAS_FUNCTION): Don't nest
...
...
gcc/ipa.c
View file @
e0df53dd
...
...
@@ -1397,7 +1397,7 @@ ipa_profile_read_summary (void)
static
unsigned
int
ipa_profile
(
void
)
{
struct
cgraph_node
**
order
=
XCNEWVEC
(
struct
cgraph_node
*
,
cgraph_n_nodes
)
;
struct
cgraph_node
**
order
;
struct
cgraph_edge
*
e
;
int
order_pos
;
bool
something_changed
=
false
;
...
...
@@ -1575,6 +1575,7 @@ ipa_profile (void)
nuseless
,
nuseless
*
100
.
0
/
nindirect
,
nconverted
,
nconverted
*
100
.
0
/
nindirect
);
order
=
XCNEWVEC
(
struct
cgraph_node
*
,
cgraph_n_nodes
);
order_pos
=
ipa_reverse_postorder
(
order
);
for
(
i
=
order_pos
-
1
;
i
>=
0
;
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