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
ad42aa96
Commit
ad42aa96
authored
Nov 28, 2018
by
Jan Hubicka
Committed by
Jan Hubicka
Nov 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lto.c (lto_read_decls): Fix handling of INTEGER_CST.
From-SVN: r266586
parent
9c7a7155
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/lto/ChangeLog
+4
-0
gcc/lto/lto.c
+2
-1
No files found.
gcc/lto/ChangeLog
View file @
ad42aa96
2018-11-28 Jan Hubicka <jh@suse.cz>
* lto.c (lto_read_decls): Fix handling of INTEGER_CST.
2018-11-22 Jan Hubicka <jh@suse.cz>
* lto.c (cmp_type_location): Remove.
...
...
gcc/lto/lto.c
View file @
ad42aa96
...
...
@@ -1764,7 +1764,8 @@ lto_read_decls (struct lto_file_decl_data *decl_data, const void *data,
from
);
if
(
len
==
1
&&
(
TREE_CODE
(
first
)
==
IDENTIFIER_NODE
||
TREE_CODE
(
first
)
==
INTEGER_CST
))
||
(
TREE_CODE
(
first
)
==
INTEGER_CST
&&
!
TREE_OVERFLOW
(
first
))))
continue
;
/* Try to unify the SCC with already existing ones. */
...
...
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