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
c654a67e
Commit
c654a67e
authored
Oct 25, 1998
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
From-SVN: r23336
parent
ff08e6b5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
10 deletions
+11
-10
gcc/testsuite/g++.old-deja/g++.jason/access7.C
+1
-1
gcc/testsuite/g++.old-deja/g++.jason/pmf2.C
+1
-1
gcc/testsuite/g++.old-deja/g++.jason/template18.C
+5
-7
gcc/testsuite/g++.old-deja/g++.jason/thunk3.C
+4
-1
No files found.
gcc/testsuite/g++.old-deja/g++.jason/access7.C
View file @
c654a67e
...
...
@@ -9,5 +9,5 @@ class A {
class
B
:
public
A
{};
class
C
:
public
A
{};
class
D
:
public
C
,
public
B
{
void
g
()
{
A
::
f
();
}
// gets bogus error - wrongly ambiguous static member call
, XFAIL *-*-*
void
g
()
{
A
::
f
();
}
// gets bogus error - wrongly ambiguous static member call
};
gcc/testsuite/g++.old-deja/g++.jason/pmf2.C
View file @
c654a67e
...
...
@@ -9,5 +9,5 @@ struct A {
void
g
(
void
(
A
::*
)());
void
h
()
{
g
(
A
::
f
);
// ERROR - failed conversion to method pointer
XFAIL *-*-*
g
(
A
::
f
);
// ERROR - failed conversion to method pointer
}
gcc/testsuite/g++.old-deja/g++.jason/template18.C
View file @
c654a67e
// Build don't link:
// Special g++ Options: -g -fexternal-templates
// GROUPS passed templates
// Bug: g++ emits template instances when it shouldn't.
// Special g++ Options: -g -fexternal-templates
#pragma implementation "irrelevant_file"
#line 1 "
wa
.h"
#pragma interface
// ERROR - , XFAIL *-*-*
#line 1 "
template18
.h"
#pragma interface
template
<
class
T
>
inline
T
min
(
T
a
,
T
b
)
{
return
a
<
b
?
a
:
b
;
}
#line
3 "wa
.C"
#line
12 "template18
.C"
main
()
{
min
(
1
,
1
);
}
// UNKNOWN "min"
min
(
1
,
1
);
// ERROR - undefined
}
gcc/testsuite/g++.old-deja/g++.jason/thunk3.C
View file @
c654a67e
// Test that function calls using thunks work right.
// Test that variadic function calls using thunks work right.
// Note that this will break on any target that uses the generic thunk
// support, because it doesn't support variadic functions.
// Special g++ Options: -fvtable-thunks
// excess errors test - XFAIL mips*-*-* alpha*-*-* rs6000-*-* powerpc-*-eabi m68k-*-coff m68k-motorola-sysv m88k-motorola-sysv3
...
...
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