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
54c61de7
Commit
54c61de7
authored
Jul 11, 2014
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* doc/invoke.texi: Document -fno-use-all-virtuals.
From-SVN: r212468
parent
0b83e688
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletions
+12
-1
gcc/doc/invoke.texi
+12
-1
No files found.
gcc/doc/invoke.texi
View file @
54c61de7
...
@@ -189,7 +189,8 @@ in the following sections.
...
@@ -189,7 +189,8 @@ in the following sections.
-
fno
-
pretty
-
templates
@
gol
-
fno
-
pretty
-
templates
@
gol
-
frepo
-
fno
-
rtti
-
fstats
-
ftemplate
-
backtrace
-
limit
=@
var
{
n
}
@
gol
-
frepo
-
fno
-
rtti
-
fstats
-
ftemplate
-
backtrace
-
limit
=@
var
{
n
}
@
gol
-
ftemplate
-
depth
=@
var
{
n
}
@
gol
-
ftemplate
-
depth
=@
var
{
n
}
@
gol
-
fno
-
threadsafe
-
statics
-
fuse
-
cxa
-
atexit
-
fno
-
weak
-
nostdinc
++
@
gol
-
fno
-
threadsafe
-
statics
-
fno
-
use
-
all
-
virtuals
-
fuse
-
cxa
-
atexit
@
gol
-
fno
-
weak
-
nostdinc
++
@
gol
-
fvisibility
-
inlines
-
hidden
@
gol
-
fvisibility
-
inlines
-
hidden
@
gol
-
fvtable
-
verify
=@
var
{
std
|
preinit
|
none
}
@
gol
-
fvtable
-
verify
=@
var
{
std
|
preinit
|
none
}
@
gol
-
fvtv
-
counts
-
fvtv
-
debug
@
gol
-
fvtv
-
counts
-
fvtv
-
debug
@
gol
...
@@ -2318,6 +2319,16 @@ ABI for thread-safe initialization of local statics. You can use this
...
@@ -2318,6 +2319,16 @@ ABI for thread-safe initialization of local statics. You can use this
option
to
reduce
code
size
slightly
in
code
that
doesn
't need to be
option
to
reduce
code
size
slightly
in
code
that
doesn
't need to be
thread-safe.
thread-safe.
@item -fno-use-all-virtuals
@opindex fno-use-all-virtuals
By default, G++ now treats all virtual functions declared in a
translation unit as odr-used, so they will be instantiated or
synthesized if possible even if they are not needed for the final
output. This is done so that such functions can be inlined after
devirtualization changes an indirect call into a direct call. If this
instantiation and synthesis prevents your code from compiling
successfully, you can disable it with this option.
@item -fuse-cxa-atexit
@item -fuse-cxa-atexit
@opindex fuse-cxa-atexit
@opindex fuse-cxa-atexit
Register destructors for objects with static storage duration with the
Register destructors for objects with static storage duration with the
...
...
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