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
3747f3dc
Commit
3747f3dc
authored
Feb 17, 2001
by
Mark Mitchell
Committed by
Mark Mitchell
Feb 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* invoke.texi (-Woverloaded-virtual): Clarify documentation.
From-SVN: r39807
parent
d9579a59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
7 deletions
+26
-7
gcc/ChangeLog
+4
-0
gcc/invoke.texi
+22
-7
No files found.
gcc/ChangeLog
View file @
3747f3dc
2001-02-17 Mark Mitchell <mark@codesourcery.com>
* invoke.texi (-Woverloaded-virtual): Clarify documentation.
2001-02-17 Richard Henderson <rth@redhat.com>
2001-02-17 Richard Henderson <rth@redhat.com>
* reload1.c (reload_cse_simplify_set): Respect LOAD_EXTEND_OP
* reload1.c (reload_cse_simplify_set): Respect LOAD_EXTEND_OP
...
...
gcc/invoke.texi
View file @
3747f3dc
...
@@ -1480,13 +1480,28 @@ new-style casts (@samp{static_cast}, @samp{reinterpret_cast}, and
...
@@ -1480,13 +1480,28 @@ new-style casts (@samp{static_cast}, @samp{reinterpret_cast}, and
@
item
-
Woverloaded
-
virtual
(
C
++
only
)
@
item
-
Woverloaded
-
virtual
(
C
++
only
)
@
cindex
overloaded
virtual
fn
,
warning
@
cindex
overloaded
virtual
fn
,
warning
@
cindex
warning
for
overloaded
virtual
fn
@
cindex
warning
for
overloaded
virtual
fn
Warn
when
a
derived
class
function
declaration
may
be
an
error
in
Warn
when
a
function
declaration
hides
virtual
functions
from
a
defining
a
virtual
function
.
In
a
derived
class
,
the
base
class
.
For
example
,
in
:
definitions
of
virtual
functions
must
match
the
type
signature
of
a
virtual
function
declared
in
the
base
class
.
With
this
option
,
the
@
smallexample
compiler
warns
when
you
define
a
function
with
the
same
name
as
a
struct
A
@{
virtual
function
,
but
with
a
type
signature
that
does
not
match
any
virtual
void
f
();
declarations
from
the
base
class
.
@};
struct
B
:
public
A
@{
void
f
(
int
);
@};
@
end
smallexample
the
@
code
{
A
}
class
version
of
@
code
{
f
}
is
hidden
in
@
code
{
B
},
and
code
like
this
:
@
smallexample
B
*
b
;
b
->
f
();
@
end
smallexample
will
fail
to
compile
.
@
item
-
Wno
-
pmf
-
conversions
(
C
++
only
)
@
item
-
Wno
-
pmf
-
conversions
(
C
++
only
)
Disable
the
diagnostic
for
converting
a
bound
pointer
to
member
function
Disable
the
diagnostic
for
converting
a
bound
pointer
to
member
function
...
...
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