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
37fc948f
Commit
37fc948f
authored
Nov 29, 2010
by
Jan Hubicka
Committed by
Jan Hubicka
Nov 29, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* collect2.c (main): Do not imply verbose output with LTO and linker plugin.
From-SVN: r167255
parent
98c1c7cd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
12 deletions
+5
-12
gcc/ChangeLog
+4
-0
gcc/collect2.c
+1
-12
No files found.
gcc/ChangeLog
View file @
37fc948f
2010
-
11
-
29
Jan
Hubicka
<
jh
@suse
.
cz
>
*
collect2
.
c
(
main
)
:
Do
not
imply
verbose
output
with
LTO
and
linker
plugin
.
2010
-
11
-
29
Dodji
Seketeli
<
dodji
@redhat
.
com
>
*
dwarf2out
.
c
(
print_die
)
:
Print
the
address
of
the
current
DIE
or
gcc/collect2.c
View file @
37fc948f
...
...
@@ -1146,8 +1146,6 @@ main (int argc, char **argv)
int
num_c_args
;
char
**
old_argv
;
bool
use_verbose
=
false
;
old_argv
=
argv
;
expandargv
(
&
argc
,
&
argv
);
if
(
argv
!=
old_argv
)
...
...
@@ -1206,14 +1204,10 @@ main (int argc, char **argv)
no_partition
=
true
;
else
if
((
!
strncmp
(
argv
[
i
],
"-flto="
,
6
)
||
!
strcmp
(
argv
[
i
],
"-flto"
))
&&
!
use_plugin
)
{
use_verbose
=
true
;
lto_mode
=
LTO_MODE_WHOPR
;
}
lto_mode
=
LTO_MODE_WHOPR
;
else
if
(
!
strcmp
(
argv
[
i
],
"-plugin"
))
{
use_plugin
=
true
;
use_verbose
=
true
;
lto_mode
=
LTO_MODE_NONE
;
}
#ifdef COLLECT_EXPORT_LIST
...
...
@@ -1428,11 +1422,6 @@ main (int argc, char **argv)
*
c_ptr
++
=
xstrdup
(
q
);
}
}
if
(
use_verbose
&&
*
q
==
'-'
&&
q
[
1
]
==
'v'
&&
q
[
2
]
==
0
)
{
/* Turn on trace in collect2 if needed. */
vflag
=
true
;
}
}
obstack_free
(
&
temporary_obstack
,
temporary_firstobj
);
*
c_ptr
++
=
"-fno-profile-arcs"
;
...
...
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