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
710afba4
Commit
710afba4
authored
26 years ago
by
Alexandre Oliva
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mark XFAIL where appropriate
From-SVN: r22819
parent
00f14949
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/testsuite/g++.old-deja/g++.other/access2.C
+1
-1
gcc/testsuite/g++.old-deja/g++.pt/overload4.C
+5
-3
gcc/testsuite/g++.old-deja/g++.pt/overload5.C
+3
-1
No files found.
gcc/testsuite/g++.old-deja/g++.other/access2.C
View file @
710afba4
...
...
@@ -3,7 +3,7 @@
class
Outer
{
typedef
int
T
;
class
Inner
{
struct
Inner
{
T
i
;
// ERROR - not accessible - XFAIL *-*-*
void
f
()
{
T
j
;
// ERROR - not accessible - XFAIL *-*-*
...
...
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.pt/overload4.C
View file @
710afba4
// Build don't link:
// crash test - XFAIL *-*-*
template
<
class
T
>
void
foo
(
T
);
template
<
class
T
>
void
bar
(
void
(
*
)(
T
),
T
);
void
baz
()
{
bar
<
int
>
(
foo
,
1
);
bar
(
foo
<
int
>
,
1
);
// explicit args for foo don't help
- XFAIL *-*-*
bar
<
int
>
(
foo
<
int
>
,
1
);
// not even here
- XFAIL *-*-*
bar
(
foo
,
1
);
// ICE - XFAIL *-*-*
bar
(
foo
<
int
>
,
1
);
// explicit args for foo don't help
bar
<
int
>
(
foo
<
int
>
,
1
);
// not even here
bar
(
foo
,
1
);
}
This diff is collapsed.
Click to expand it.
gcc/testsuite/g++.old-deja/g++.pt/overload5.C
View file @
710afba4
// Build don't link:
// crash test - XFAIL *-*-*
template
<
class
T
>
void
foo
();
void
(
*
bar
)()
=
foo
<
void
>
;
void
(
*
baz
)()
=
foo
;
// ERROR - can't deduce T
- XFAIL *-*-*
void
(
*
baz
)()
=
foo
;
// ERROR - can't deduce T
This diff is collapsed.
Click to expand it.
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