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
c0f15a3f
Commit
c0f15a3f
authored
Dec 16, 2014
by
Jan Hubicka
Committed by
Jan Hubicka
Dec 16, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fibonacci_heap.h (min): Return m_data instead of non-existing data.
From-SVN: r218797
parent
061ddf67
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/ChangeLog
+4
-0
gcc/fibonacci_heap.h
+1
-1
No files found.
gcc/ChangeLog
View file @
c0f15a3f
2014
-
12
-
16
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
2014
-
12
-
16
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
*
fibonacci_heap
.
h
(
min
):
Return
m_data
instead
of
non
-
existing
data
.
2014
-
12
-
16
Jan
Hubicka
<
hubicka
@
ucw
.
cz
>
*
ipa
-
inline
-
analysis
.
c
(
will_be_nonconstant_predicate
):
Consider
*
ipa
-
inline
-
analysis
.
c
(
will_be_nonconstant_predicate
):
Consider
return
values
of
const
calls
as
constants
.
return
values
of
const
calls
as
constants
.
(
estimate_function_body_sizes
):
Expect
calls
to
have
false
predicates
.
(
estimate_function_body_sizes
):
Expect
calls
to
have
false
predicates
.
gcc/fibonacci_heap.h
View file @
c0f15a3f
...
@@ -211,7 +211,7 @@ public:
...
@@ -211,7 +211,7 @@ public:
if
(
m_min
==
NULL
)
if
(
m_min
==
NULL
)
return
NULL
;
return
NULL
;
return
m_min
->
data
;
return
m_min
->
m_
data
;
}
}
/* Replace data associated with NODE and replace it with DATA. */
/* Replace data associated with NODE and replace it with DATA. */
...
...
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