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
c71eb2b7
Commit
c71eb2b7
authored
Jul 28, 2010
by
Andi Kleen
Committed by
Andi Kleen
Jul 28, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lto-opts.c (lto_file_read_options): Add loop over all inputs.
From-SVN: r162633
parent
d720b869
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
9 deletions
+29
-9
gcc/ChangeLog
+4
-0
gcc/lto-opts.c
+25
-9
No files found.
gcc/ChangeLog
View file @
c71eb2b7
2010-07-28 Andi Kleen <ak@linux.intel.com>
* lto-opts.c (lto_file_read_options): Add loop over all inputs.
2010-07-28 Richard Guenther <rguenther@suse.de>
PR middle-end/44903
...
...
gcc/lto-opts.c
View file @
c71eb2b7
...
...
@@ -349,8 +349,8 @@ input_options (struct lto_input_block *ib)
void
lto_read_file_options
(
struct
lto_file_decl_data
*
file_data
)
{
size_t
len
;
const
char
*
data
;
size_t
len
,
l
,
skip
;
const
char
*
data
,
*
p
;
const
struct
lto_simple_header
*
header
;
int32_t
opts_offset
;
struct
lto_input_block
ib
;
...
...
@@ -358,14 +358,30 @@ lto_read_file_options (struct lto_file_decl_data *file_data)
data
=
lto_get_section_data
(
file_data
,
LTO_section_opts
,
NULL
,
&
len
);
if
(
!
data
)
return
;
header
=
(
const
struct
lto_simple_header
*
)
data
;
opts_offset
=
sizeof
(
*
header
);
lto_check_version
(
header
->
lto_header
.
major_version
,
header
->
lto_header
.
minor_version
);
LTO_INIT_INPUT_BLOCK
(
ib
,
data
+
opts_offset
,
0
,
header
->
main_size
);
input_options
(
&
ib
);
/* Option could be multiple sections merged (through ld -r)
Keep reading all options. This is ok right now because
the options just get mashed together anyways.
This will have to be done differently once lto-opts knows
how to associate options with different files. */
l
=
len
;
p
=
data
;
do
{
header
=
(
const
struct
lto_simple_header
*
)
p
;
opts_offset
=
sizeof
(
*
header
);
lto_check_version
(
header
->
lto_header
.
major_version
,
header
->
lto_header
.
minor_version
);
LTO_INIT_INPUT_BLOCK
(
ib
,
p
+
opts_offset
,
0
,
header
->
main_size
);
input_options
(
&
ib
);
skip
=
header
->
main_size
+
opts_offset
;
l
-=
skip
;
p
+=
skip
;
}
while
(
l
>
0
);
lto_free_section_data
(
file_data
,
LTO_section_opts
,
0
,
data
,
len
);
}
...
...
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