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
1590ea76
Commit
1590ea76
authored
Oct 19, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
From-SVN: r23187
parent
51924768
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
9 deletions
+6
-9
gcc/testsuite/g++.old-deja/g++.bugs/900213_03.C
+1
-1
gcc/testsuite/g++.old-deja/g++.mike/p10769a.C
+2
-2
gcc/testsuite/g++.old-deja/g++.ns/extern1.C
+0
-2
gcc/testsuite/g++.old-deja/g++.other/pmf2.C
+1
-1
gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
+2
-3
No files found.
gcc/testsuite/g++.old-deja/g++.bugs/900213_03.C
View file @
1590ea76
...
...
@@ -21,7 +21,7 @@ struct0 *ptr;
void
global_function_0
()
{
fmp
=
&
ptr
->
function_member
;
// ERROR -
missed by g++, warned by cfront, XFAIL *-*-*
fmp
=
&
ptr
->
function_member
;
// ERROR -
//dmp = &ptr->data_member; // caught by g++, missed by cfront
}
...
...
gcc/testsuite/g++.old-deja/g++.mike/p10769a.C
View file @
1590ea76
...
...
@@ -31,7 +31,7 @@ void A::main() {
void
(
A
::*
mPtr
)()
=
&
A
::
f1a
;
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
mPtr
))(
&
a
);
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
f2a
))(
&
a
);
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
f2a
))(
&
a
);
// gets bogus error XFAIL *-*-*
}
int
main
()
{
...
...
@@ -40,6 +40,6 @@ int main() {
void
(
A
::*
mPtr
)()
=
&
A
::
f1b
;
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
a
.
*
mPtr
))(
&
a
);
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
a
.
f2a
))(
&
a
);
(
*
(
void
(
*
)(
A
*
))
PMF2PF
(
a
.
f2a
))(
&
a
);
// gets bogus error XFAIL *-*-*
return
ok
!=
3
+
3
+
5
+
5
+
7
+
7
;
}
gcc/testsuite/g++.old-deja/g++.ns/extern1.C
View file @
1590ea76
...
...
@@ -5,8 +5,6 @@
// An extern declaration of an undeclared object within a function
// introduces the object into the enclosing namespace [basic.link]/7
// excess errors test - XFAIL *-*-*
namespace
{
void
foo
()
{
extern
int
xx
;
...
...
gcc/testsuite/g++.old-deja/g++.other/pmf2.C
View file @
1590ea76
...
...
@@ -14,5 +14,5 @@ S * pf;
void
f
()
{
pmf
=
&
pf
->
f
;
// ERROR - not a valid pmf expression
- XFAIL *-*-*
pmf
=
&
pf
->
f
;
// ERROR - not a valid pmf expression
}
gcc/testsuite/g++.old-deja/g++.robertl/eb131.C
View file @
1590ea76
...
...
@@ -10,12 +10,11 @@ struct a {
void
bar
(
double
);
void
bar
(
float
);
void
foo
(
void
(
a
::*
member
)(
float
)
);
// ERROR -
void
foo
(
void
(
a
::*
member
)(
float
)
);
};
a
::
a
()
{
foo
(
&
junk
);
// ERROR - junk is an unqualified-id.
foo
(
&
bar
);
// ERROR - bar is an unqualified-id.
XFAIL *-*-*
foo
(
&
bar
);
// ERROR - bar is an unqualified-id.
}
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